71
What will be the output of the following C code?
#include <stdio.h>
union p
{
int x;
char y;
}k = {1, 97};
int main()
{
printf("%d\n", k.y);
} Answer & Solution
Answer: Option
D
No explanation is given for this question. Let's Discuss on Board