#define Str(x) #x #define Xstr(x) Str(x) #define OP plus void main() { char *opname = Xstr(OP); printf(%s,opname); }
Reveal answer
Fill a bubble to check yourself
#define Str(x) #x #define Xstr(x) Str(x) #define OP plus void main() { char *opname = Xstr(OP); printf(%s,opname); }