FILE* ff=fopen("c:/a.txt","r"); //fgetc读取一个字符printf("%c\n",fgetc(ff)); //读取一行/*也可以使用fgets 需要设置缓冲区* FILE *fp; char str[256]; fgets(str, ...
確定! 回上一頁