+ 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 Answer
+ 5
ćH4PPY 3O H$LPć thnq so much āŗļø
#include <stdio.h> #define TO_STR(x) #x int main() { printf ("%s",TO_STR(123\\45)); return 0; } Output: 123\45.