int factorial(int n) { if (n==1) { return 1; } else { return n * factorial(n-1); } }
Learn more efficiently, for free:
Introduction to Python
7.1M learners
Introduction to Java
4.7M learners
Introduction to C
1.5M learners
Introduction to HTML
7.5M learners