MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following code #include #include int main() { union my_union { int i; float f; char c; }; union my_union* u; u = (union my_union*)malloc(sizeof(union my_union)); u->f = 20.60f; prin |
| A. | Garbage Value |
| B. | 20.600000 |
| C. | Syntax Error |
| D. | 20.6 |
| Answer» C. Syntax Error | |