We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8899752 commit 5e5da48Copy full SHA for 5e5da48
1 file changed
docs/preprocessor/stringizing-operator-hash.md
@@ -22,16 +22,6 @@ The Visual C++ stringizing operator does not behave correctly when it is used wi
22
23
The following example shows a macro definition that includes the stringizing operator and a main function that invokes the macro:
24
25
-Such invocations would be expanded during preprocessing, producing the following code:
26
-
27
-```cpp
28
-int main() {
29
- printf_s( "In quotes in the printf function call\n" "\n" );
30
- printf_s( "\"In quotes when printed to the screen\"\n" "\n" );
31
- printf_s( "\"This: \\\" prints an escaped double quote\"" "\n" );
32
-}
33
-```
34
35
```cpp
36
// stringizer.cpp
37
#include <stdio.h>
0 commit comments