+ 6
Could anyone explain the "#x" and output in this code?..
#include <stdio.h> #define TO_STR(x) #x int main() { printf ("%s",TO_STR(123\\45)); return 0; } Output: 123\45.
1 Antwort
+ 5
「HAPPY TO HELP」 thnq so much ☺️
#include <stdio.h> #define TO_STR(x) #x int main() { printf ("%s",TO_STR(123\\45)); return 0; } Output: 123\45.