- 论坛徽章:
- 0
|
// Write a program that takes two command-line arguments. The first is a character, and the second is a filename. The program should print only those lines in the file containing the given character.
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#define MAX 257
int main(int argc,char *argv[])
{
int ch;
char line[MAX];
FILE *fp;
if(argc==3)
{
ch=atoi(argv[1]);
if((fp=fopen(argv[2],"rt"))==NULL)
{
fprintf(stderr,"Can't not open the file %s.\n",argv[2]);
exit(1);
}
while(fgets(line,MAX-1,fp)!=NULL)
if(strchr(line,ch))
puts(line);
}
else
fprintf(stderr,"Usage: %s character filename.\n",argv[0]);
return 0;
}
这个是《c prime plus》函数上面的一个题目,就是从命令行输入一个字符和一个文件,然后打印文件中包含给定字符的行
程序没有达到预期的效果,我感觉应该是 fgets(line,MAX-1,fp) 这句的问题,求指点? |
|