Я написал это, но это не сработало: у меня есть файл с именем contact.txt, у меня есть какой-то текст, как я могу найти текст в файле и, если он совпадает, должен распечатать этот текст в c
#include <stdio.h>
#include <stdlib.h>
#include <strings.h>
int main()
{
char don[150];
int tr,y;
FILE *efiom;
//this is the input of don blah blah blah
printf("Enter a search term:\n");
scanf("%s",&don);
//this is for the reading of the file
efiom =fopen("efiom.txt","r");
char go[500];
//OMO i don't know what is happeing is this my code
while(!feof(efiom))
{
// this is the solution for the array stuff
void *reader = go;
tr = strcmp(don,reader);
fgets(go, 500 ,efiom);
}
// my if statement
if(tr == 0)
{
printf("true\n");
}
else
{
printf("false\n");
}
fclose(efiom);
return 0;
}