Vidyalelo
C Programming · Q64

Structure and Union

Programming · C Programming · question 64

Q64

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

A.
5
B.
9
C.
8
Answer
D.
16

Answer: Option C

Solution

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