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