What will be the output of the following C code according to C99 standard?
Posted: Wed Jul 13, 2022 7:54 pm
#include <stdio.h> struct p { int k; char c; float f; }; int main() { struct p x = {.c = 97, .f = 3, .k = 1}; printf("%f\n", x.f); }
a) 3.000000
b) Compile time error
c) Undefined behaviour
d) 1.000000
a) 3.000000
b) Compile time error
c) Undefined behaviour
d) 1.000000