fgetchar :
- fgetchar gets a character from stdin
- The fgetchar() function is equivalent to fgetc() with the argument stdin.
#include<stdio.h>int main(void){ char ch; /* prompt the user for input */ printf("Enter a character : "); /* read the character from stdin */ ch = fgetchar(); /* display what was read */ printf("The character read is: '%c'",ch); return 0;}
Return Type :
- On Success : Next character from the input stream pointed to by stdin.
- On end-of-file : Returns EOF
- On error : Returns EOF
Incoming search terms:
- fgetchar (2)
- c program fgetchar (1)
- c programming fgetchar (1)
- funcion fgetchar (1)