* symple program of C? Add two numbers.. #include<stdio.h> #include<conio.h> void main { int a,b,s; printf("Enter two no:"); scanf("%d%d",&a,&b); s=a+b; printf("sum of numbers:%d",s); getch(); }
This blogger has been created for the purpose of education. The owner of this blogger is Vikas Kumar Sharma who has worked hard in making this blog lo, only coding related topics are posted in this blog. Computer people who want to learn the language, follow this blog and post it to others
Subscribe to:
Posts (Atom)
Program to check whether the reverse string is a palindrome
# include < stdio.h > # include < string.h > int main ( ) { //declare variables char str1 [ 30 ] ; int i , len...

-
Example 4: Calculator Program in C using function and switch statement Let's create a Calculator program using function and switch cas...
-
Example-1 .How to write a calculator program in C using the switch case statement . calculator.c # include < stdio.h > int main ( )...