Q13
What is the output of the following code: union Data int x; char y; ; Data d; d.x = 10; d.y = 'A'; cout << d.x << " " << d.y; in C++?
A.
Compilation error
B.
A A
C.
10 10
D.
0.416666667
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board