Write a C program to find factorial(using recursion) of any no.
#include<stdio.h> #include<conio.h> int fact(int); main() { int n,result; printf("\n Enter any number"); scanf("%d",&n); result=fact(n); printf("\n The result=%d",result); getch(); } int fact(int m) { if(m==0) return 1; else return(m*fact(m-1)); }
Output:
Write a C- Program To Count The Lines, Words, Characters In A Given Text.
Difference between Statement coverage and Branch coverage.
Discuss Software Maintenance
What is WAP? Why it is used?