C++ OperatorsAn operator is simply a symbol that is used to perform operations. There can be many types of operations like arithmetic, logical, bitwise etc. There are following types of operators to perform different types of operations in C language.
![]() Precedence of Operators in C++The precedence of operator species that which operator will be evaluated first and next. The associativity specifies the operators direction to be evaluated, it may be left to right or right to left. Let's understand the precedence by the example given below: The "data" variable will contain 105 because * (multiplicative operator) is evaluated before + (additive operator). The precedence and associativity of C++ operators is given below:
Next TopicC++ Identifiers
|
JavaTpoint offers too many high quality services. Mail us on h[email protected], to get more information about given services.
JavaTpoint offers college campus training on Core Java, Advance Java, .Net, Android, Hadoop, PHP, Web Technology and Python. Please mail your requirement at [email protected].
Duration: 1 week to 2 week