Any one knows what is the ASCII value of i.
I try printf("%d",EOF);
printf("%d",EOF);
but its print -1
-1
and also try printf("%c",EOF);
printf("%c",EOF);
but its print blank screen.
so anyone know which key for EOF.
EOF
EOF (as defined in the C language) is not a character/not an ASCII value. That's why getc returns an int and not an unsigned char - because the character read could have any value in the range of unsigned char, and the return value of getc also needs to be able to represent the non-character value EOF (which is necessarily negative).
getc
int
unsigned char
1.4m articles
1.4m replys
5 comments
57.0k users