Vidyalelo
C Programming · Q91

Structure and Union

Programming · C Programming · question 91

Q91

What will be the output of the following C code? #include struct student char *c; struct student *point; ; void main() struct student s; struct student *m = &s; printf("%d", sizeof(student));

A.
Compile time error
Answer
B.
8
C.
5
D.
16

Answer: Option A

Solution

Answer: Option A
No explanation is given for this question Let's Discuss on Board