c语言 13
Posted 小虾米2018
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c语言 13相关的知识,希望对你有一定的参考价值。
1、
#include <stdio.h> int main(void) { FILE *fp; int ch; char filename[FILENAME_MAX]; printf("please input filename: "); scanf("%s", filename); if((fp = fopen(filename, "r")) == NULL) printf("\\afile open fialed."); else { int lines = 0; while((ch = fgetc(fp)) != EOF) { if(ch == \'\\n\') lines++; } printf("lines = %d\\n", lines); fclose(fp); } return 0; }
以上是关于c语言 13的主要内容,如果未能解决你的问题,请参考以下文章
我的C语言学习进阶之旅解决 Visual Studio 2019 报错:错误 C4996 ‘fscanf‘: This function or variable may be unsafe.(代码片段
我的C语言学习进阶之旅解决 Visual Studio 2019 报错:错误 C4996 ‘fscanf‘: This function or variable may be unsafe.(代码片段