Format Specifier in C language:
Keyword
|
Format
Specifier
|
Size
|
Data Range
|
char
|
%c
|
1
Byte
|
-128
to +127
|
unsigned
char
|
<--
-- >
|
8
Bytes
|
0 to
255
|
int
|
%d
|
2
Bytes
|
-32768
to +32767
|
long
int
|
%ld
|
4
Bytes
|
-231 to +231
|
unsigned
int
|
%u
|
2
Bytes
|
0 to
65535
|
float
|
%f
|
4
Bytes
|
-3.4e38 to +3.4e38
|
double
|
%lf
|
8
Bytes
|
-1.7e38 to +1.7e38
|
long
double
|
%Lf
|
12-16
Bytes
|
-3.4e38 to +3.4e38
|