Q110
What will be the output of the following C++ code? #include using namespace std; int gcd (int a, int b) int temp; while (b != 0) temp = a % b; a = b; b = temp; return(a); int main () int x = 15, y = 25; cout << gcd(x, y); return(0);
A.
15
B.
25
C.
375
D.
5
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board