Special Operators in C++

operators in c++

An operator is a symbol which represents a particular operation that can be performed on data. An operand is the object on which an operation is performed. By combining the operators and operands we form an expression. An expression is a sequence of operands and operators that reduces to a single value. C operators can be classified as Arithmetic operators Relational operators Logical operators Assignment operators Increment or Decrement operators Conditional operator Bit wise operators unary operator Special operators Additional operators in c++ Here we are going with the additional…

Read More

TOKENS in C++

tokens in c++

The smallest individual units in program are known as tokens. A C++ program is written using these tokens, white spaces and the syntax of the language. C++ has the following tokens. Keywords Identifiers Constants Strings Operators 1. Keywords: The keywords implement specific C++ language feature. They are explicitly reserved identifiers and can’t be used as names for the program variables or other user defined program elements. ISO C++ (C++98) Keywords • and• and_eq• asm• auto• bitand• bitor• bool• break• case• catch• char• c lass• compl• const• const_cast• continue• default• delete•…

Read More