38

union shark
{
int a;
char *b;
double d;
long l;
}s;
int main()
{
printf("%d %d",sizoef(s),sizeof(s.b));
return 0;
}

Output


8 2

Related Posts