1.

What will be the output of the following C code?
#include <stdio.h>
#define calcA 5 + 3
#define calcB 4 + 6
int main()
{
int Res = calcA * calcB;
printf("%d n", Res);
}

A. 5,3
B. 4,6
C. Compilation Error
D. 23
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs