fgetc example: money counter */ #include <stdio.h> int main () { FILE * pFile; int c; int n = 0; pFile=fopen ( "myfile.txt" , "r" ); if (pFile==NULL) perror ...
確定! 回上一頁