Displaying Character Data Types with printf: %c : char Display « Data Type « C Tutorial






#include <stdio.h>
main(){
   
    char firstInitial;

    firstInitial= 'S';
    printf("The value of firstInitial is %c", firstInitial);

}
The value of firstInitial is S








2.13.char Display
2.13.1.Displaying Character Data Types with printf: %c
2.13.2.Printing strings and characters
2.13.3.The putchar() function
2.13.4.Display the ASCII characters and their corresponding codes, from Code 32 on up to Code 127