Q610
What is the space complexity of the given code? #include int power(int x, int y) if (y == 0) return 1; else if (y%2 == 0) return power(x, y/2)*power(x, y/2); else return x*power(x, y/2)*power(x, y/2); int main() int x = 2; int y = 3; printf("%d", power(x, y)); return 0;
A.
O(1)
AnswerB.
O(n)
C.
O(log n)
D.
O(n log n)
Answer: Option A
Solution
Answer: Option A
No explanation is given for this question Let's Discuss on Board