1 (a). Write a C program to find the factorial value of a number. Also write the algorithm and draw flowchart. Ans. /*c program to find out factorial value of a number*/#include<stdio.h>#include<conio.h>int main(){ int n,i,fact=1; printf(“Enter any number : “); scanf(“%d”, &n); for(i=1; i<=n; i++) fact Read More …