The char data type
The char data type holds a single character char ch;
The char is held as a one-byte integer in memory. The ASCII code is what is actually stored, so we can use them as characters or integers, depending on our purpose
Use scanf (“%c”, &ch); to input 1 char