

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code?#include <stdio.h> #define fun(p, q) #p #q int main() { printf("%s n", fun(a, b)); return 0; } |
A. | Compilation Error |
B. | pq |
C. | ab |
D. | Garbage value |
E. | None of these |
Answer» D. Garbage value | |