Examveda

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

Answer: Option D


Join The Discussion

Related Questions on Structures and Unions in C plus plus

What is a structure in C++?

A. A collection of functions

B. A reserved keyword in C++

C. A user-defined data type containing variables of different data types

D. A way to declare arrays of data