1.

What will be the output of the following C code according to C99 standard?
 #include <stdio.h>
struct S
{
int i;
char ch;
float flt;
};
int main()
{
struct S R = {.ch = 45, .i = 11, 31};
printf("%f n", R.flt);
}

A. 31.000000
B. Compilation Error
C. Garbage value
D. Undefined behabiour
E. 0.000000
Answer» F.


Discussion

No Comment Found

Related MCQs