Define the Char Data Type of C Language?
The char defines characters. The char type will usually require only 1 byte of internal storage. Every char type has an equivalent integer interpretation, so it is a special type of short integer.
Eg:
{
char Letter;
Letter = 'x';
}