1.

What will be the output of the following C code?
 #include <stdio.h>
struct Employee
{
char *ch;
struct Employee *point;
};
void main()
{
struct Employee e1;
struct Employee *e2 = &e1;
printf("%d", sizeof(Employee));
}

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


Discussion

No Comment Found

Related MCQs