题目内容
下列程序的功能是输出文件 example.txt 中的________个数。#includeint main(void){ FILE *fp;long count = 0;fp = fopen("example.txt", "r");fgetc(fp);while(!feof(fp)){ ++count;fgetc(fp);}fclose(fp);printf("count=%ld\n", count);return 0;}
查看答案
搜索结果不匹配?点我反馈
更多问题