The char data type is typically 8 bits in size. The char data type is commonly used to store individual characters such as letters, digits, and special symbols. The format specifier for the character data type in C is %c.
For example:
char print_char = ‘A’;
printf(“Character: %c\n”, print_char);