

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