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:
What is a Judy array?
Difference between ISO and CMM standards.
Write the rules of DBA.
Briefly differentiate between CDMA and GSM technologies.