Vidyalelo
C++ Programming · Q89

Functions and Procedures in C++

Programming · C++ Programming · question 89

Q89

What will be the output of the following C++ code? #include using namespace std; int mult (int x, int y) int result; result = 0; while (y != 0) result = result + x; y = y - 1; return(result); int main () int x = 5, y = 5; cout << mult(x, y) ; return(0);

A.
20
B.
25
Answer
C.
30
D.
35

Answer: Option B

Solution

Answer: Option B
No explanation is given for this question Let's Discuss on Board