Determine the output
#includestdio.h  
main()
{
union abc {
int a;
char cha;
}var;
var.cha = 'A';
printf("%d", var.a);
}

Posted on by