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 pattern output.
1
1 2
1 2 3
1 2 3 4
1 2 3 4 5
Write a C program to print the following output.
1
2 2
3 3 3
4 4 4 4
5 5 5 5 5
Write short note on Call setup of GSM network for mobile-to-mobile call.
Write the characteristics of a good user interface.
Write a C program to convert any number into word.
Write short notes on: