/* DEVELOP A RECURSIVE FUNCTION TO FIND FACTORIAL OF A NUMBER */
#include<stdio.h>
int fact(int n)
{
    int factor=1;
    if(n==1)
   
The content has been moved to our permanent website: www.programminghelp.in.
You will be redirected shortly.

Saturday, May 14, 2011

recursive function,factorial of a number,c,programm,lab,record,first semester,bca

/* DEVELOP A RECURSIVE FUNCTION TO FIND FACTORIAL OF A NUMBER */
#include<stdio.h>
int fact(int n)
{
    int factor=1;
    if(n==1)
   
The content has been moved to our permanent website: www.programminghelp.in.
You will be redirected shortly.