Computer Science, asked by gowthikolli, 9 months ago

if x=5 and y=2 int fun(int x,int y) { if(x==0) return y; else return fun(x-1,x=y); }

Answers

Answered by gyadav30122000
4

Explanation:

if x=5 and y=2 int fun(int x,int y) { if(x==0) return y; else return fun(x-1,x=y); }

Similar questions