If three different variables need to be “returned” from a function, how should
the function be designed (without using global variables)?

A. Use a call by value.
B. Extern the variables.
C. Use a call by reference.
D. It is impossible to do this in C++.

C

Computer Science & Information Technology

You might also like to view...

What is the value of intE after the following statements execute?

Dim intC As Integer Dim intD As Integer Dim intE As Integer intC = 20 intD = 3 intE = intC \ intD a. 7 b. 6 c. 6.666667 d. 0

Computer Science & Information Technology

To select a specific area of a worksheet to print, you should first use the _____ button.

A. Select Area B. Worksheet Area C. Print Area D. Area

Computer Science & Information Technology