boost learn study
Monday, March 31, 2014
Recursion Function
Home
�
C Functions
�
Recursion Function
/*Recursion Function*/ #include
#include
void main() { int n,r; clrscr(); int fact(int n); printf("Enter the No."); scanf("%d",&n); r = fact(n); printf("%d",r); getch(); } int fact(int n) { int f; if(n==1) return (1); else f = n * fact (n-1); return(f); }
Read more �
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment