1.

What will be the output of the following C code?
 #include <stdio.h>
int main()
{
float f = 'I';
printf("%f", f);
return 0;
}

A. Compilation Error
B. I
C. 73.000000
D. Runtime Error
E. None of these
Answer» D. Runtime Error


Discussion

No Comment Found

Related MCQs