The return value of printf() is the number of characters printed.
Escape characters permit special characters to be printed: \" double quotes \' single quote \? question mark \n newline \\ backslash %% percentage sign
The ctype.h header file contains some functions to identify different character types: isalpha() returns 1 if the character is a letter isdigit() returns 1 if the character is a number isspace() returns 1 if the character is a space or newline tolower() returns the input character in lowercase format toupper() returns the input character in uppercase format