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 calculate the following sum:
Sum = 1-x^2/2!+x^4/4!-x^6/6!+x^8/8!-x^10/10!
Write a C- Program To Determine If The Given String Is A Palindrome Or Not.
What is linear searching?
Write a C procram to G.C.D. of two no. using recursion.
Explain left factoring with suitable example.
Distinguish Testing vs. Quality Control & Assurance and Audit
What is the Modularity of a Software System ?