C++ Programming

C++ Find the Sum of Two Numbers [int a,b,c].

Program to find the sum of two numbers [int a,b,c].

Write a C++ Program to find the sum of two numbers;

C++ Code

#include<iostream.h>
#include<conio.h>
void main()
{
int a,b,c;
cout<<"Enter two numbers:";
cin>>a>>b;
c=a+b;
cout<<"The sum of two numbers is:"<<c;
cout<<endl<<"Thank you";
cout<<endl<<"Press any key to continue...";
getch();
}

Tuts

About Author

Tutsmaster.org provides tutorials related to tech and programmings. We are also setting up a community for the users and students.

You may also like

program to find leap year
C++ Programming

C++ Program to Find Leap Year by Using Function

  • March 3, 2016
Write a program to find if the inputted year is a leap year or not by using the concept of