Showing posts with label WAP to find the factorial of the number (1x2x3x4). Show all posts
Showing posts with label WAP to find the factorial of the number (1x2x3x4). Show all posts

FACTORIAL NUMBER

WAP to find the factorial of the number (1x2x3x4)


void main ()

{

int fact=1,no;

clrscr();

printf ("Enter any number: ");

scanf ("%d",&no);

do

{

fact=fact*no;

no--;

}

while (no>0);

printf ("\nFactorial is %d",fact);

getch ();

}




Labels