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

TOKENS ,IDENTIFIERS & CONSANTS

TOKENS    Tokens  are  the  basic  buildings  blocks  in   language  which  are constructed  together  to  write  a   program.Tokens is each  and  every  smallest  individual  units  in  a   program  are known  as   tokens.  C++  tokens  are six type . Keywords   :    struct ,break , else long , switch , case ,enum , register  , typedef. Identifiers   :main,  total. Constants  : 3.14  . Strings : "hello", "string". Operators :  +, - ,/ ,*. Special  symbols : (),{}. Example #include<iostream.h> #include<Conio.h>                     int  main()                 {                  ...