Skip to content

Vaibhav562u/open-programming

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 

Repository files navigation

open-programming

Code to find the factorial of a number using recursion #include<bits/stdc++.h> using namespace std; int Fact(int a) if(a==1){ return 1; } return a*Fact(a-1); } int main(){ int n=5; cout<<Fact(n)<<endl; return 0; }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published