帮忙解答关于模式查找的问题!!!太感谢了
在下有一个关于模式查找的程序不太理解 希望能得到大家的帮助#include<stdio.h>
#include<string.h>
#define MAXLINE 1000
int getline(char *line,int max);
int main(int argc,char *argv[])
{
char line[MAXLINE];
int found=0;
if(argc!=2)
printf("Usage:find pattern\n");
else
while(getline(line,MAXLINE)>0)
if(strstr(line,argv[1])!=NULL)
{
printf("%s",line);
found++;
}
return found;
}
int getline(char *s,int lim)
{
int c;
char *t=s;
while(--lim>0 && (c=getchar())!=EOF && c!='\n')
*s++=c;
if(c=='\n')
*s++=c;
*s='\0';
return s-t;
}
这个程序有什么问题,为什么没有输出结果?求解