long int specifier c

Solutions on MaxInterview for long int specifier c by the best coders in the world

showing results for - "long int specifier c"
Bentley
18 Jan 2020
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