Type char displays as a character

The char type is an eight-bit signed or unsigned integer type that can be used to store the eight bits that represent characters in the Extended ASCII character set.

The char type can also be used as a general-purpose eight-bit type on which you can perform arithmetic.

When you use the insertion operator along with cout to display a variable of type char, the character represented by the numeric value is displayed instead of the numeric value itself.