C examples for Data Type:char
Read one letter and check its value
#include <stdio.h> int main()// ww w . ja v a 2 s . c o m { char cResponse = '\0'; printf("Enter the letter A: "); scanf("%c", &cResponse); if ( cResponse == 'A' ) printf("\nCorrect response\n"); else printf("\nIncorrect response\n"); }