1.

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

A. Garbage value
B. Nothing
C. Compilation Error
D. 1001
E. None of these
Answer» D. 1001


Discussion

No Comment Found

Related MCQs