MCQOPTIONS
Saved Bookmarks
| 1. |
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); } |
| A. | Compilation Error |
| B. | 13.000000 |
| C. | Garbage value |
| D. | Undefined behaviour |
| E. | None of these |
| Answer» C. Garbage value | |