1.

What will be the output of the following C code?
#include <stdio.h>
struct Employee
{
int id = 5;
char emp_name[23];
};
void main()
{
struct Employee Emp;
Emp.id = 102;
printf("Interview Mania");
}

A. Interview Mania
B. Garbage value
C. Compilation Error
D. 102
E. None of these
Answer» D. 102


Discussion

No Comment Found