It doesn't read the first line of the text file. Why?
pFile = fopen(user, "r");
if(pFile == NULL)
printf("File doesn't exist!\n");
if(pFile != NULL){
while(fgets(line,80,pFile) != NULL)
{
fgets(search,1000,pFile);
printf("%s\n",line);
.
.
.
.
.