1.

What will be the output of the following C code?
#include <stdio.h>
struct City
{
};
void main()
{
struct City c[2];
printf("%d", sizeof(c));
}

A. 0
B. 2
C. 4
D. 8
E. None of these
Answer» B. 2


Discussion

No Comment Found

Related MCQs