

MCQOPTIONS
Saved Bookmarks
1. |
What will be the output of the following C code? #include <stdio.h> void main() { struct Employee { int id; char emp_name[30]; }; struct Employee Emp; id = 101; printf("%d", id); } |
A. | Garbage value |
B. | Compilation Error |
C. | Nothing |
D. | Null |
E. | 101 |
Answer» C. Nothing | |