Multiple choice

To change the value of a union member within a function, your program must pass the union variable to the function by value.

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

Passing by value creates a copy of the union. Modifying the copy does not change the original union variable in the calling function.