#include
#include
int main()
{
int line=1;
char str[1024];
FILE *fp=fopen("file.txt", "r");//指定文件
if ( fp )
{
while( fgets( str,sizeof(str), fp) )
{
if ( strstr( str, "string" ) ) //查找string字符串
printf("%d %s", line, str );
line ++;
}
fclose(fp);
}
return 0;
}
你好!还是明确采用什么编程比较好,函数区别太多