Home » C Programming » C Preprocessor

What will be the output of the program? #include<stdio.h> #define str(x) #x #define Xstr(x) str(x) #define oper multiply int main() { char *opername = Xstr(oper); printf("%s\n", opername); return 0; }

← Previous Next →

Discussion & Comments

No comments yet. Be the first to comment!