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

Posted on by