Hi!
I want to learn C language.
my question is: how dose this while loop wok.
while((c=getChar()) !=EOF)
if(c>'0' && c<'9')
nbr++;
How EOF(end of file ) works? EOF=-1;
How can I stop the program?
when I write (-1) I can not stop the program.