本文主要是介绍C语言读数据+遍历行数程序|Visual studio 2022,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
读数据+遍历行数程序
记录一个度数+遍历行数的程序
FILE* file2;
int row2 = 0;
file2 = fopen("D://sins_mat2.txt", "r");
// file1 = fopen("D://ga_mat2.txt", "r");
if (file2 == NULL) {printf("open file1 failed.\n");return 0;
}
while (!feof(file2))
{if (fgetc(file2) == '\n')//864000{row2++;}
}
printf("%d \r\n ", row2);
这篇关于C语言读数据+遍历行数程序|Visual studio 2022的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!