| Format |
Type de donnée |
| %d |
Entier |
short, int |
| %i |
Entier |
short, int |
| %u |
Entier non signé |
unsigned short, unsigned int |
| %o |
Entier octal |
short, int |
| %x, %X |
Entier hexadécimal |
short, int |
| %l, %ld, %li, %lu, %lo, %lx, %lX |
Entier long |
long |
| %lld, %lli, %llu, %llo, %llx, %llX |
Entier long 64 bits |
long long |
| %c |
Caractère ASCII |
char, unsigned char |
| %f, %F, %g, %G |
Flottant |
float, double |
| %e, %E |
Flottant (exponentiel) |
float, double |
| %Lf, %LF, %Lg, %LG, %Le, %LE |
long double |
long double |
| %s |
Chaine de caractère |
char * |
| %p |
Pointeur |
(type) * |
|