Final answer:
The program prints '4' followed by '2' since the function showDub prints the doubled value without modifying the original variable. Thus, the output is '4 2'.
Step-by-step explanation:
The given C++ program defines a function showDub that takes an integer, doubles it, and prints it to the console. The function is called in the main function with x as an argument, where x is initially set to 2. The showDub function prints 2 * 2, which is 4. After that, the original value of x is printed in the main function, which remains 2 since the modification in showDub does not affect the original variable. Therefore, the output of the program is:
- 4
- 2
The correct answer is option B) 4 2.