C program to find the factorial of a number.
Here is a program to find the factorial of a number.
#include<stdio.h>
int fac(int n);
int main() {
printf("Here is a program to find the factorial of a number using functions\n");
printf("Enter a num to find the factorial:");
int n = 0...
gagang.hashnode.dev1 min read