1.

What will be the output of the following C code?
#include <stdio.h>
#define fun(p, q) p * q = 101
int main()
{
printf("Interview Mania n");
}

A. Compilation error as lvalue is required for the expression p*q=101
B. Interview Mania
C. Preprocessor error as lvalue is required for the expression p*q=101
D. Runtime error as lvalue is required for the expression p*q=101
E. None of these
Answer» C. Preprocessor error as lvalue is required for the expression p*q=101


Discussion

No Comment Found

Related MCQs