MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> struct B { int m; char n; float t; }; int B = 55; int main() { struct B z = {10, 99}; printf("%f %d n", z.t, B); } |
| A. | Compilation Error |
| B. | 0.000000 55 |
| C. | Garbage value |
| D. | depends on compiler |
| E. | None of these |
| Answer» C. Garbage value | |