1.

What will be the output of the following C code?
#include <stdio.h>
#define calc(p, q) p / q + p
int main()
{
int a = -10, b = 5;
printf("%d n", calc(a + b, 5));
return 0;
}

A. -10
B. -14
C. 5
D. Compilation Error
E. None of these
Answer» C. 5


Discussion

No Comment Found

Related MCQs