Search

Keywords in C++ |

 Every words in C++ language is a keyword or an identifier . Keywords in C++ language can not be used as a variable name . They are specifically used by the compiler for its own purpose and they serve as   building blocks of a C++ program.

 C++ language has some reserve word which are called keywords. They are the part of the C++ tokens.

There are 63 keywords currently defined for standard C++. 


C++ Keyword

asmdoublenewswitch
autoelseoperatortemplate
breakenumprivatethis
caseexternprotectedthrow
catchfloatpublictry
charforregistertypedef
classfriendreturnunion
constgotoshortunsigned
continueifsignedvirtual
defaultinlinesizeofvoid
deleteintstaticvolatile 
dolongstruct
while 


  C++

No comments:

Post a Comment

DATA TYPES

 "Data types specifies the type and size of data . " A program contains different types of data (integer , real , character etc.) ...