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 TWO format characters are used, %i and %f.