1%c Character
2%d Signed integer
3%e or %E Scientific notation of floats
4%f Float values
5%g or %G Similar as %e or %E
6%hi Signed integer (short)
7%hu Unsigned Integer (short)
8%i Unsigned integer
9%l or %ld or %li Long
10%lf Double
11%Lf Long double
12%lu Unsigned int or unsigned long
13%lli or %lld Long long
14%llu Unsigned long long
15%o Octal representation
16%p Pointer
17%s String
18%u Unsigned int
19%x or %X Hexadecimal representation
20%n Prints nothing
21%% Prints % character