MCQOPTIONS
Saved Bookmarks
| 1. |
What will be the output of the following C code?#include <stdio.h> struct Clothes { int size; char Brand_name[50]; }; void main() { Clothes c; c.size = 39; printf("Jockey"); } |
| A. | Jockey |
| B. | 39 |
| C. | Compilation Error |
| D. | Garbage value |
| E. | None of these |
| Answer» D. Garbage value | |