How user defined function is working | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

How user defined function is working

mainly fr finding factorial of a number

7th Nov 2017, 12:10 PM
Akhil James
Akhil James - avatar
1 Answer
+ 2
In the code inserted, suppose, you give 3 as input. Since 3>0, the code returns 3*fact(2). Again, fact(2) returns 2*fact(1). fact(1) returns 1*fact(0). So the final result is 3*2*1*fact(0). But fact(0)=1. So the function finally returns 6. https://code.sololearn.com/cDO15j6FTfpn/?ref=app
7th Nov 2017, 12:50 PM
DAB
DAB - avatar