Character Data Type in C
The Character data type is used to specify a variable that will contain characters from ASCII table like ‘A’, ‘%’, and so on. The keyword used by C language to specify some variable as character is char. The width of memory allocated to a character variable is 8 bits. The char variable stores the character … Read more