We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6090461 commit 939fed9Copy full SHA for 939fed9
1 file changed
docs/debugger/format-specifiers-in-cpp.md
@@ -66,6 +66,7 @@ The following tables describe the format specifiers that you can use in Visual S
66
|b|unsigned binary integer|25|0b00000000000000000000000000011001|
67
|bb|unsigned binary integer(without leading 0b)|25|00000000000000000000000000011001|
68
|e|scientific notation|25000000|2.500000e+07|
69
+|f|fixed-point floating point|25000000|25000000.000000|
70
|g|shorter of scientific or floating point|25000000|2.5e+07|
71
|c|single character|0x0065|101 'e'|
72
|s|const char* string (with quotation marks)|\<location> "hello world"|"hello world"|
0 commit comments