Skip to main content

Find factorial of a number.

PROCEDURE:-

      1.input an integer value n
      2.set fact to 1 and i to 1
      3.repeat step 4,5 until i less than or equal to n
      4.set fact to fact*i
      5.increment i by 1
      6.print fact

CODE:-

#include<stdio.h>
void main()
{
long int n, fact=1;
int i;
printf(“enter value for n”);
scanf(“%ld”,&n);
for(i=1;i<=n;i++)
      fact=fact *i ;
printf(“ factorial for the number %ld is %ld”,n,fact);
}


Input:- enter value for n 5
Output:- factorial for the number 5 is 120

Comments

Popular posts from this blog

Find Value of S=ut+1/2*a*t**2.

PROCEDURE:-        1.enter values for u,a,t to find distance        2.find distance with the formulae ut+1/2at 2        3.print the above result CODE:- #include<stdio.h> #include<conio.h> void main() {   float u,t,a,S;   clrscr();   printf(“enter values u,t,a”);   scanf(“%f %f %f”, &u,&t,&a);   S=(u*t)+(0.5*a*t*t);   printf(“\n  S = %f”, S); } Input:- enter values u,t,a               U=10,t=4,a=4.9 Output:- S =79.200