1.

What will be the output of the following C code?
 #include <stdio.h>
int main()
{
int Eighteen = 18;
int eighteen = 15;
printf("%d", eighteen);
return 0;
}

A. 18
B. Compilation Error
C. 15
D. Runtime Error
E. None of these
Answer» D. Runtime Error


Discussion

No Comment Found

Related MCQs