1.

What will be the output of the following C code?
#include <stdio.h>
void main()
{
struct Employee
{
int Id;
char Name[35];
};
struct Employee emp;
emp.Id = 15;
printf("%d", emp.Id);
}

A. compilation Error
B. Garbage value
C. 15
D. Nothing
E. None of these
Answer» D. Nothing


Discussion

No Comment Found