1.

Comment on the output of the following C code.
 #include <stdio.h>
#define num 200);
int main()
{
printf("%d n", num
}

A. Garbage value
B. Compile time error, there are no open braces in #define
C. 200
D. Compile time error, the printf braces aren t closed
E. None of these
Answer» D. Compile time error, the printf braces aren t closed


Discussion

No Comment Found

Related MCQs