| C++ Conversation Specifier | |
|
Shortcuts |
Description : Conversion: Prints |
| %c | character |
| %d | integer in decimals |
| %ld | long |
| % i | integer (decimal, octal, hexadecimal) |
| % f | float |
| % e or % g | float , exponential notation |
| % lf | double a |
| % Lf | long double |
| % lg | double exponential notation |
| %u | unsigned integer |
| % lu | long unsigned integer |
| % o | pointer |
| %x | hexadecimal integer |
| %s | string (character array like ch1[80]) |