从文件中查找数据并输出,按以下步骤操作:
打开文件,如果文件未找到,报错,结束 fopen
输入待查的字符串,存到变量中 gets
逐行循环读取文件,直到文件结束 fgets
检查字符串是否在该行中,如果在,则输出该行,关闭文件,结束。否则继续查找 strstr
循环结束,输出未找到该字符串。
关闭文件。fclose
相关代码和运行效果如下图:
#include
#include
#include
#include
{
char s[256]="LMN";
freopen("a.txt","r",stdin);
char t[256];
while(gets(t))
{
if(strstr(t,s))
{
puts(t);
}
}
system("pause");
return 0;
}