Welcome To The World Of Hacking


Learn Hacking|Teach Hacking|Learn To Secure|Learn To Code

Monday

C++ TUTORIAL 3: ADDITION OF TWO NUMBERS

#include<iostream>
using namespace std;

int main()
{
    int a=5;
    int b=6;
    int sum = a + b;
    cout<<"Sum of a and b : "<<sum;
    return 0;
}

OUTPUT:

No comments:

Post a Comment

Related Posts Plugin for WordPress, Blogger...