- Get link
- X
- Other Apps
Writing a programs in C++ languages Here in this blog you will see the basic program of C++ programming languages in below so follow your blogger website and see more interesting topics 1. Adding of two number in c++ programming language In this program we give you knowledge about basic program of addition of two number in C++ languages and how to write a program in Ide like VS code etc //Adding two number #include<iostream> using namespace std; int main() { int a,b,c; cout<<"Enter the value of a ="; cin>>a; cout<<"Enter the value of b ="; cin>>b; cout<<"Addition of Two Number"<<"\n"; c=a+b; cout<<c; return 0; } output - Enter the value of a =12 Enter the value of b =12 Addition of Two Number Addition = 24 2. Subtraction of two number in c++ programming language In this program we give you knowledge about basic program of Subtraction of two number in ...