C program for finding factorial by recursion
February 8, 2020
Here is a C program to find a factorial by recursive method –
int factorial (int x ) { return ( n==0? 1: n*(fact(n-1))); }
Here is a C program to find a factorial by recursive method –
int factorial (int x ) { return ( n==0? 1: n*(fact(n-1))); }