Operator Name Associativity Operators: Primary Scope Resolution Left To Right
Operator Name Associativity Operators: Primary Scope Resolution Left To Right
data type ?
Operator
precedence
and
associativit
y
Difference
between
continue
and break ?
a data type or simply type is a classification identifying one of various types of data, such
as real, integer or Boolean, that determines the possible values for that type
Operator Name
Associativity Operators
left to right
::
Primary
left to right
Unary
right to left
++ -- +
new delete
left to right
.*->*
Multiplicative
left to right
Additive
left to right
Bitwise Shift
left to right
<<
Relational
left to right
<
Equality
left to right
==
Bitwise AND
left to right
&
Bitwise Exclusive OR
left to right
Bitwise Inclusive OR
left to right
Logical AND
left to right
&&
Logical OR
left to right
||
Conditional
right to left
? :
Assignment
right to left
Comma
left to right
()
[ ]
&
(type_name)
sizeof
>>
>
<=
>=
!=
+=
-=
*=
/=
<<=
>>=
%=
&=
^=
|=
Breakstatement is used to transfer control of the program outside loop or switch case statement either
conditionally or unconditionally. Continuestatement is used to skip some statement of the loop and
moves to the next iteration in the loop.
Prototype of
function