when reaching num value to 1 then the method called again and and again with argument 0 (num-1) then how it is working | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

when reaching num value to 1 then the method called again and and again with argument 0 (num-1) then how it is working

namespace SoloLearn { class Program { static int Fact(int num) { if (num == 1) { return 1; } return num * Fact(num - 1); } static void Main(string[] args) { Console.WriteLine(Fact(6)); } } }

4th Jul 2016, 6:10 PM
Seenivasan
1 Answer
+ 1
Try to put the "return num * Fact (num - 1)" into else block.
4th Jul 2016, 6:20 PM
Marek Varga
Marek Varga - avatar