Introducing Radical.sh

Forget Code launches a powerful code generator for building API's

Sum of Two Numbers using third Variable in C++

//SUM OF TWO NUMBERS USING THIRD VARIABLE

#include<iostream.h>
#include<conio.h>
void main()
{
int x,y,z;
clrscr();
cout<<"Enter the 2 numbers to add";
cin>>x>>y;

z=x+y;
cout<<"Sum of 2 numbers=" <<z;
getch();
}