Skip to main content

Introduction of c++

C++  
        Is powerful ,complied ,genenral-purpose ,case-sensitive programming language that supports procedural,object-oriented programming,
               Features of c++ 
  1. Object-oriented programming language. 
  2. Simple.
  3. Case sensitive. 
  4. Platform dependent.
  5. Syntax based language.
  6. Powerful.
  7. Portability.
  8. Compiler based.
  9. Efficient use of pointer.

Comments

Post a Comment

Popular posts from this blog

Simple hello world program and explanation

HELLO WORLD PROGRAM AND EXPLANATION • Hello world program # include<iostream.h>  #include<conio.h> // pre-processor directives ,header files          Void main () // main () is where program execution start           {                 Clrscr (); //its clear output of the previous  program.               Cout<<”HELLO WORLD”;         // prints hello world .               Getch();        //its hold the output screen of the program.                       }                         OutPut                  HELLO WORLD Explanation Above program is the simple c++ program  which pri...