求大神写个C程序带注释 需求如下
发布网友
发布时间:2023-09-14 15:37
我来回答
共1个回答
热心网友
时间:2024-11-16 05:42
#include <stdio.h>
#include <string.h>
int main()
{
FILE *fp = fopen("data.txt", "r");//打开文件
char s[100];//存储文件字符
char p[100];//存储用户输入。
fscanf(fp, "%s", s);//读文件。
scanf("%s",p);//读用户输入
if(strcmp(s,p) == 0) //相同
printf("ok\n");
else//不同
printf("no\n");
return 0;
}
追问谢谢 你的方法很好
如果我的文本中有
hello
world
这种格式的文本 我只需要读world有该怎么写