Multiple Choice
Given the following function prototype:
Int myFunc(int, int) ;
Which of the following statements is valid? Assume that all variables are properly declared.
A) cin >> myFunc(y) ;
B) cout << myFunc(myFunc(7, 8) , 15) ;
C) cin >> myFunc('2', '3') ;
D) cout << myFunc(myFunc(7) , 15) ;
Correct Answer:

Verified
Correct Answer:
Verified
Q2: Which of the following function prototypes is
Q3: Stream variables (for example, ifstream and ofstream)
Q12: What value is returned by the following
Q15: _ parameters are useful in three situations:•
Q16: The heading of the function is also
Q16: Assume that all variables are properly declared.
Q17: The _ of a function consists of
Q28: The following function heading in a C++
Q29: The statement: return 37, y, 2 *
Q38: The execution of a return statement in