1.

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

A. 333.000000
B. Compilation Error
C. Garbage value
D. 0.000000
E. None of these
Answer» E. None of these


Discussion

No Comment Found

Related MCQs