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
Can we use this pointer in a class specific, operator-overloading function for new operator?
What is the need of a destructor?
What is the default width for ouputting a long integer using the insertion operator?
Describe about storage allocation and scope of global, extern, static, local and register variables?
What is the two main roles of operating system?
How can you quickly find the number of elements stored in a a) static array b) dynamic array ? Why is it difficult to store linked list in an array?how can you find the nodes with repetetive data in a linked list?
Why should we use null or zero in a program?
What does new do in c++?
What is virtual methods?
What is the c++ code?
Should the this pointer can be used in the constructor?
How do you save a c++ program?
Will a C compiler always compile C++ code a) Yes b) No c) Only optimized compilers
What is encapsulation in C++? Give an example.
You run a shell on unix system. How would you tell which shell are you running?