Hi,
I am trying to debug the following code:
int check_file(FILE* file)
{
int c;
int nl = '\n';
while((c = fgetc(file)) != EOF)
{
if (c == nl) return 0;
}
printf("\n ERROR EOF \n");
return 1;
}
when it gets error and returns 1, I would like to know the reason.
I thought about printing on screen the character read in the variable "c", before I get the error (so I can understand in which part of the read file is the error located) but this is an integer.
Is it possible somehow to print in on screen as character?
Thanks