These are format characters, which are 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 scanf statement shown in this diagram, notice
that the format character used is %s, since
the value to read in is a string.