Here is a C program to find a factorial by recursive method –
int factorial (int x ) { return ( n==0? 1: n*(fact(n-1))); }
Technology Articles Blog
Here is a C program to find a factorial by recursive method –
int factorial (int x ) { return ( n==0? 1: n*(fact(n-1))); }