Posts

INTRODUCTION ABOUT C++ .

Image
  INTRODUCTION ABOUT C++  C++ was developed by Bjarne Stroustrup at Bell labs in 1979, as an extension to the C language. The major difference between C and C++ is that C is a procedural programming language; which means that it is derived from sequential step by step structured programming. Some of it's applications includes scheduling running of other programs, designing games, graphics etc. On the other hand C++ is a combination of procedural programming as well as object oriented programming. Objects consists of Data in form of it's characteristics and are coded in the form of methods. In object oriented programming computer programs are designed using the concept of objects that interact with the real world. Some other differences include:   C                                                         C++ Since C...

MAKE HELLO WORLD PROGRAM IN C++ LANGUAGE .

Image
 S O HELLO FRIENDS, IN THIS ARTICLE WE WILL LEARN HOW TO MAKE A SIMPLE, HELLO WORLD PROGRAM . MAKE SIMPLE PROGRAM HELLO WORLD,   PROGRAM FOR HELLO WORLD  #include <iostream> using namespace std; int main() {   cout << "Hello World!";   return 0; } |THIS IS THE PROGRAM OF HELLO WORLD ........

HOW TO ADD TWO NUMBER WITH EXAMPLE.

Image
HOW TO ADD TWO NUMBER WITH EXAMPLE.    Today we will know how to add two number in c++ language with input . so lets start , Example -2                                   #include <iostream>                              using namespace std;                              int main() {                               int a,b,sum;                                cout<<"enter your first number :"                                cin>>a;                    ...

LEARN C++ LANGUAGE THROUGH THE EXAMPLE.

Image
LEARN C++ THROUGH THE EXAMPLE THIS IS THE EXAMPLE OF C++ LANGUAGE TO LEARN FAST    EXAMPLE MAKES YOU PERFECT IN YOUR FIELD FIRST YOU HAVE TO INSTALL IDE AND COMPILER IN YOUR PC TO RUN YOUR PROGRAM . IF YOU SEE THIS BLOG IN YOUR ANDROID PHONE. SO DON'T WORRY ABOUT THAT  WE ARE SUGGESTING YOU TO PREFER ONLINE WEBSITE TO COMPILE YOUR PROGRAM. SO FIRST WE START THE ADDING TO NUMBER IN OUR PROGRAM . EXAMPLE -; adding two number -  👈  #include <iostream > using namespace std; int main() { int a=10; //variable and value int b=25; int c=a+b; cout <<"the sum of two number is"<<c; return 0; } NOTE - THIS EXAMPLE YOU CAN TRY ITSELF AND LEARN MORE EFFICEINT WAY ; IF YOU HAVE MOBILE PHONE TO TRY THIS CODE YOU CAN USE ONLINE COMPILER . AND COMPILE THIS PROGRAM ..... THANKS FOR READING THID ARTICLE....