What is the output of this program?
#include struct student { char *c; }; void main() { struct student s[2]; printf("%d", sizeof(s)); }
Answer: D
No answer description available for this question