Home
Learn C
List of C programs
Competitive Programming
School of Programming
Program to Print addition of two numbers
#include<stdio.h>
#include<conio.h>
void main()
{
int a, b, result;
clrscr() ;
printf("Enter any two numbers");
scanf("%d%d",&a,&b);
result=a+b;
printf("\nthe addition of the numbers is %d", result);
getch();
}
Newer Post
Older Post
Home
Social Share Icons
19,701
9,297
4,182
2,157
1,052
Example Programs
Program to Perform different Stack Operations using Structure
Program to Print Hello world
Program to Print addition of two numbers
Program to Perform different Stack Operations
Program to implement linear queue operations
How to install Linux on Android using Complete linux installer
Most of you are already aware about the Open Source Operating System "Linux" .Linux is mainly used by the users with some technica...
Program to calculate factorial of the Given number
Program to copy one string to other using library function
Program to check for Prime number
Calculate Sum of two numbers using Function