1.

What will be the output of the following C code?
#include <stdio.h>
#define Cprogram
int main()
{
int p = 21;
#ifdef Cprogram
p = 11;
printf("%d", Cprogram);
}

A. 21
B. Garbage value
C. 11
D. Compilation Error
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs