1,029 views

2 Answers

0 0 votes
inorder to upload an image, it asks source , size ,URL

whats ol that???

Am not aware of how to upload an image taken, if u would help

il upload my working for u
0 0 votes

I have constructed a recursion tree for F(3,3)

Correct me if I am wrong.

Position:
Show:

Related questions

5 5 votes
2 answers 2 answers
3.1k
3.1k views
shekhar chauhan asked Jun 28, 2016
3,143 views
Can Someone explain either Tree or Stack method to trace out this recursion ?What is the output of this Program ?
4 4 votes
1 answers 1 answer
2.1k
2.1k views
admin asked Sep 15, 2015
2,147 views
I'm solving questions of recursion. But those problems are hard to debug in few minutes? Have you any such method that solve recursive problem in less time? I have writte...
0 0 votes
1 1 answer
731
731 views
kallu singh asked Dec 14, 2017
731 views
6 6 votes
4 4 answers
896
896 views
GO Classes asked Jun 28, 2025
896 views
Consider the following recursive C function.unsigned int f(unsigned int n) { if (n < 10) printf("%d",n); else { printf("%d", n%10); f(n/10); printf("%d", n%10); } }What d...