0
anyone please correct me with this example
int factorial(int n) { if (n==1) { return 1; } else { return n * factorial(n-1); } } int main(){ cout << factorial; system("pause"); return 0; } what if I put the value of n==4?
1 Answer
+ 5
cout<<factorial(4);