i have a project to submit .....i need sum help on RECURSION
i have a project to submit .....i need sum help on RECURSION
Recursion program in which programming language?? Be clear with your query.
As you didn't mention the programing language, i am sending you the code of the C# expecting that you asking about the same
Code:{ if (b == 1) return 1; else { b *= factorial(a-1); return b;} }
Bookmarks