C - Operators and Expressions
C - Operators and Expressions
41. The associativity of logical AND, OR is
- right to left
- left to right
- option a for arithmetic expression and b for pointer expression
- option a for pointer expression and b for arithmetic expression
42. Which operator has the lowest priority ?
- Assignment
- Division
- Comma
- Conditional operator
47. p++ executes faster than p + 1 since
- p uses registers
- single machine instruction is required for p ++
- options a and b
- none of the above