Answer Posted / swetcha
Addition: +
Subtraction: ?
Addition Assignment: +
Assignment:
Bitwise AND Assignment: &
Bitwise exclusive OR Assignment: ^
Bitwise inclusive OR Assignment: |
Division Assignment: /
Left shift assignment: <<
Modulus Assignment: %
Multiplication Assignment: *
Right shift assignment: >>
Subtraction Assignment: ?
Bitwise AND: &
Bitwise exclusive OR: ^
Bitwise inclusive OR: |
Logical
Logical AND: &&
Logical OR: ||
Miscellaneous
Comma: ,
Conditional: ? :
Pointer-to-member: .* or ?>*
Reference: &
Scope resolution: ::
Multiplicative
Division: /
Modulus: %
Multiplication: *
Postfix
Cast: ()
Function call: ( )
Member access: . and ?>
Postfix decrement: ??
Postfix increment: ++
Subscript: [ ]
Relational and Equality
Equality: ==
Greater than or equal to: >=
Greater than: >
Less than or equal to: <=
Less than: <
Not equal: !=
Shift
Left shift: <<
Right shift: >>
Unary
Address-of: &
delete
Indirection: *
Logical Negation: !
new
One's Complement: ~
Prefix decrement: ??
Prefix increment: ++
sizeof
Unary Plus Operator: +
Unary Negation Operator: -
| Is This Answer Correct ? | 16 Yes | 8 No |
Post New Answer View All Answers
What is #include cmath?
What is command line arguments in C++? What are its uses? Where we have to use this?
Why is standard template library used?
Is it possible to have a recursive inline function in c++?
When should overload new operator on a global basis or a class basis?
What is the difference between reference and pointer?
What is time_t c++?
Why is main function important?
What are virtual functions in c++?
what are Operators and explain with an example?
Are vectors passed by reference c++?
What does floor mean in c++?
How do you master coding?
Is there a c++ certification?
Program to check whether a word is a sub-string or not of a string typed