Computer Science, asked by kabisimadgp, 8 months ago

The correct order of priority of the operators &&, ! and * is​

Answers

Answered by tanishq7880
1

Answer:

The logical-AND operator ( && ) has higher precedence than the logical-OR operator ( || ), so q && r is grouped as an operand. Since the logical operators guarantee evaluation of operands from left to right, q && r is evaluated before s-- .

Similar questions