The getchar() function : char read « Data Type « C Tutorial






The getchar() function is used to read a single character from the keyboard.

#include <stdio.h>
 
int main(){
   
    char key;
 
    puts("Type your favorite keyboard character:");
    key=getchar();
    printf("Your favorite character is %c!\n",key);
   
    return(0);
}
Type your favorite keyboard character:
      1
      Your favorite character is 1!








2.12.char read
2.12.1.Reading and Writing Single Characters: scanf(%c,&key)
2.12.2.The getchar() function
2.12.3.Reading characters and strings
2.12.4.All letters of the alphabet, symbols, and number keys on the keyboard have ASCII codes