Home » C Programming » Preprocessors » Question
  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));
    }
    1. a ## b
    2. p ## q
    3. Compilation Error
    4. Nothing
    5. None of these
Correct Option: B

p ## q



Your comments will be displayed only after manual approval.