printf data types c

Solutions on MaxInterview for printf data types c by the best coders in the world

showing results for - "printf data types c"
Samuel
23 Aug 2019
1c	Character
2d or i	Signed decimal integer
3e	Scientific notation (mantissa/exponent) using e character
4E	Scientific notation (mantissa/exponent) using E character
5f	Decimal floating point
6g	Uses the shorter of %e or %f
7G	Uses the shorter of %E or %f
8o	Signed octal
9s	String of characters
10u	Unsigned decimal integer
11x	Unsigned hexadecimal integer
12X	Unsigned hexadecimal integer (capital letters)
13p	Pointer address
14n	Nothing printed
15%	Character