1.

What will be the output of the following C code on a 64 bit machine?
#include <stdio.h>
union Stir
{
int num;
char ch;
};
int main()
{
union Stir str;
printf("%d", sizeof(str));
return 0;
}

A. str
B. Compilation Error
C. 4
D. All of above
E. None of these
Answer» D. All of above


Discussion

No Comment Found

Related MCQs