C - Structures,Unions - Discussion

You Are Here :: Home > C > Structures,Unions - Discussion

 



Q.

What is the output of this C code?

#include
struct student
{
};
void main()
{
struct student s[2];
printf("%d", sizeof(s));
}

A. 2 B. 4
C. 8 D. 0

Answer: Option D
Explaination:

No Explanation



Discussion

Your Comments Goes here...
NameDiscussion