The char is a variable type in C.
When you work with characters, you use the char variable type to store them.
#include <stdio.h> int main() /*from w w w .ja v a 2 s .c o m*/ { char a,b,c,d; a = 'W'; b = a + 24; c = b + 8; d = '\n'; printf("%c%c%c%c",a,b,c,d); return(0); }
The code declares four char variables.
These variables are assigned values.
All those %c placeholders are stuffed into the printf() statement.