C++ Program to find the sum of two numbers
30/09/2022
0 Comments
//C++ Program to add 2 numbers #include<iostream.h> #include<conio.h> void main() { clrscr(); int a, b, sum; cout<<"Enter any two numbers"<<endl; cin>>a>>b; sum=a+b; cout<<"Sum of two numbers = "<<sum<<endl; getch(); }