1.

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

A. Compilation Error
B. Runtime Error
C. 6
D. 10
E. None of these
Answer» D. 10


Discussion

No Comment Found

Related MCQs