Discussion :: Functions - C++
-
Which of the following statement is correct about the program given below?
#include
void FresherGate::GateFunction(char xx, char yy, char zz) { x = xx + yy + zz; y = float(xx * 2); cout" x = "
A.
The program will print the output x = 65. |
B.
The program will print the output x = 66. |
C.
The program will print the output x = 130. |
D.
The program will print the output x = 180. |
E.
The program will not compile successfully. |
Answer : Option D
Explanation :
No answer description available for this question.
Be The First To Comment