MCQOPTIONS
Saved Bookmarks
| 1. |
What is the output of this C code? #include void main() { struct student { int no; char name[20]; }; struct student s; no = 8; printf("%d", no); } |
| A. | Nothing |
| B. | Compile time error |
| C. | Junk |
| D. | 8 |
| Answer» C. Junk | |