-
What will be the output of the following C code according to C99 standard?
#include <stdio.h>
struct stru
{
int m;
char n;
float t;
};
int main()
{
struct stru R = {.n = 99, .t = 13, .m = 21};
printf("%f\n", R.t);
}
-
- Compilation Error
- 13.000000
- Garbage value
- Undefined behaviour
- None of these
Correct Option: B
13.000000