Wednesday, 13 December 2017

C++ Programming Tutorial #5 urdu & hindi || Variables in c++ programming

This is 5th video tutorial of C++ programming,the language of this tutorial is Urdu and Hindi. In this tutorial we will learn how we can use variables in c++ programming. How variables do work?


#include <iostream>

using namespace std;

int main()
{
   
   int a=15;
   int b=14;
   int sum=a+b;
      cout<<sum;
    return 0;
}


No comments:

Post a Comment