What will be the output of the following c code on a 64 bit machine
#include stdio.h
union Siu
{
int nu;
char m;
};
int main()
{
union Siu n;
printf("%d", sizeof(n));
return 0;
}


Posted on by