These are format characters, which can be used in
both printf and scanf statements.

%s  is the format character for a string.

%i  is the format character for an integer.

%f  is the format character for a float.

%c  is the format character for a character.


In the printf statements shown in this diagram, notice
that NO format characters are used, since the 
information to print out consists of only literal text.