Skip to main content

Features of c++

 Features 
  1. Object oriented Programming language: This main advantage of C++ is, it is object oriented programming language. It follow concept of oops like polymorphism, inheritance, encapsulation, abstraction.
  2. Simple :Every C++ program can be written in simple English language so that it is very easy to understand and developed by programmer.
  3. case sensitive programming language: In C++ programming 'break and BREAK' both are different. If any language treats lower case latter separately and upper case latter separately than they can be called as case sensitive programming language Example c, c++, java, .net are sensitive programming languages. other wise it is called as case insensitive programming language Example HTML, SQL is case insensitive programming languages. 
  4. Platform dependent: A language is said to be platform dependent whenever the program is execute in the same operating system where that was developed and compiled but not run and execute on other operating system. C++ is platform dependent language.
    Syntax based : language C++ is a strongly tight syntax based programming language. If any language follow rules and regulation very strictly known as strongly tight syntax based language. Example C, C++, Java, .net etc. If any language not follow rules and regulation very strictly known as loosely tight syntax based language. Example HTML.
  5. Powerful :C++ is a very powerful programming language, it have a wide verity of data types, functions, control statements, decision making statements, etc. : A language is said to be platform dependent whenever the program is execute in the same operating system where that was developed and compiled but not run and execute on other operating system. C++ is platform dependent language. 
  6. Syntax based : language C++ is a strongly tight syntax based programming language. If any language follow rules and regulation very strictly known as strongly tight syntax based language. Example C, C++, Java, .net etc. If any language not follow rules and regulation very strictly known as loosely tight syntax based language. Example HTML.
  7. Powerful :C++ is a very powerful programming language, it have a wide verity of data types, functions, control statements, decision making statements
  8. Portability :It  is  the  concept  of  carrying  the  instruction  from  one  system  to another  system.  In  C++  Language.cpp  file  contain  source code,  we  can  edit  also  this  code.  .exe  file  contain  application, only  we  can  execute  this  file.  When  we  write  and  compile  any C++  program  on  window  operating  system  that  program easily  run  on  other  window  based  system. 
  9. Compiler  based: C++  is  a  compiler  based  programming  language  that  means without  compilation  no  C++  program  can  be  executed.  First we  need  compiler  to  compile our  program  and  then  execute. 
  10. Efficient  use  of  pointers :Pointers  is  a  variable  which  hold  the  address  of  another variable,  pointer  directly  direct  access  to  memory  address  of any  variable  due  to  this  performance  of  application  is  improve. In  C++  language also concept  of  pointer  are available. 

Comments

Post a Comment