Answers for "getchar declaration in c"

C
0

getchar declaration in c

int getchar(void)
/* returns either:
 * 1. In SUCCESS: The character read as an unsigned char casted to an int.
 * 2. In FAILURE: EOF on end of file or error. 
 */
Posted by: Guest on March-30-2022

Code answers related to "C"

Browse Popular Code Answers by Language