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 abstraction in c++ with example?
When should we use container classes instead of arrays?
Explain overriding.
What is a stack? How it can be implemented?
What is a dynamic binding in c++?
What is the use of cmath in c++?
What c++ is used for?
Show the declaration for a static function pointer.
Can you use the function fprintf() to display the output on the screen?
Write about the scope resolution operator?
Where is atoi defined?
Where are setjmp and longjmp used in c++?
What is a sequence in c++?
What does the following code do: int c=0; cout< a) Undefined *Updated* b) 01 c) 00
What do you mean by static variables?