1.

What will be the output of the following C code?
#include <stdio.h>
#define num 12
int main()
{
const int num = 10;
printf("num = %d n", num);
}

A. num
B. num = 12
C. num = 10
D. Compilation Error
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs