C Program to Print Factorial using Recursion YASH PAL, 31 July 20241 September 2024 In this tutorial, we are going to make a C Program to Print factorial using Recursion with step by step full complete explanation. C program to print factorial using recursion program Program Code to print factorial using recursion. #include<stdio.h> #include<conio.h> int Factorial(int input); void main() { int n; printf("Enter first number: "); scanf("%d", &n); printf("Factorial of %d is %d", n, Factorial(n)); getch(); } int Factorial(int input) { if(input==0) return 1; else return input*Factorial(input-1); } Output c coding problems cPrograms