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 print the following output.
1
2 2
3 3 3
4 4 4 4
5 5 5 5 5
What is the Modularity of a Software System ?
What is feasibility study? Explain different types of feasibility study.
What operations can be performed on Queues?
What do you mean by balancing of DFD? Explain with a suitable example.
Write short note on Call setup of GSM network for mobile-to-mobile call.
What are the propositions of Putnam’s model?