No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
2 Posted Topics
[CODE]/*program to find the factorial of a given number*/ #include<stdio.h> main() { int fact(int ); [COLOR=DarkSlateGray]/*-----------------------------------------------------*/[/COLOR] int n,fact; printf("\nenter the number for which you want to find the factorial"); scanf("%d",&n); fact=fact(n); printf("\nthe factorial of yhe number %d is %d",n,fact); } [COLOR=DarkSlateGray]/*-----------------------------------------------------*/[/COLOR] int fact(int n) { if(n==1) return(1); else return n*fact(n-1); …
[QUOTE]:cry: Please help me,I'm a bigginner programmer. I have to send a project after tomorrow . My project is "Student Library". Programmed : -->Shor menu for user to select : a)add : student id,name,score(mid,final) b)delete c)modify d)list by id like this -- ***and in add menu user must not insert …
The End.
F1uT3