Write a C program to find sum of digit of any no.
#include<stdio.h> #include<conio.h> main() { int n,digit,sum=0; printf("\n enter any number"); scanf("%d",&n); while(n>0) { digit=n%10; sum=sum+digit; n=n/10; } printf("\n the sum=%d",sum); getch(); } 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 That Uses Functions To Insert A Sub-String In To A Given Main String From A Given Position.
Define software quality. Briefly explain McCall’s quality factors.
Implement Bubble Sort using C.
Why Required of ISO 9001:2000 standard?
Write a C program to multiplication of two matrix.