Question: this is a c++ question After executing the following program segment, what is the value of the variables and output of the program? Write your
this is a c++ question
After executing the following program segment, what is the value of the variables and output of the program? Write your answer in Table 1.

1 2 struct Play {int score, bonus; }; union value {int p, q;}; enum level {easy, medium, hard}; 13 4 5 6 7 8 9 10 Play player1 = {10, 15}, player2, player3; value val; level game = medium; ++player1.score; player2 = player1; player2.bonus += 5; player3 = player2; player2.score += 12; player3. score += (int)game; val.p player1.score; val.q = player1.bonus - 2; 11 12 13 14 15 16 17 cout
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
