当我尝试运行我的程序时,打印的行数错误。
LINES: 0
这是输出,虽然我的 .txt 文件中有五行
这是我的程序:
#include<stdio.h>
#include<stdlib.h>
int countlines(char *filename);
void main(int argc, char *argv[])
{
printf("LINES: %d\n",countlines(argv[1]));
}
int countlines(char *filename)
{
// count the number of lines in the file called filename
FILE *fp = fopen(filename,"r");
int ch=0;
int lines=0;
if (fp == NULL);
return 0;
lines++;
while ((ch = fgetc(fp)) != EOF)
{
if (ch == '\n')
lines++;
}
fclose(fp);
return lines;
}
我确信这是一个简单的错误,但我是编程新手。任何帮助将不胜感激。