写一个程序,给定一个文件和一个字符串,输出包含该字符串的行和行号,用c语言或者c++

2024-12-04 07:36:51
推荐回答(2个)
回答1:

#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;
}

回答2:

你好!还是明确采用什么编程比较好,函数区别太多