Computer Science, asked by arghyamaji30, 8 months ago

Which of the following operators has the lowest precedence?
Pick ONE option
O Ternary operator (?:)
N
Comma operator (m)
Sizeof operator (sizeof)
Member access operator (.)

Answers

Answered by neemagaira12
1

Answer:

comma operator m

Explanation:

follow me.. plzzz

Answered by adventureisland
0

The "comma operator" is a sequence point with the lowest priority of any C operator.

About lowest precedence Operator :

  • The comma operator (expressed by the character,) is a binary operation that evaluates the first argument and disregards the result before evaluating the second parameter and returning the result.
  • The comma operator is a sequence point with the lowest priority of any C operator.
  • The comma operator is associative from left to right. Left to right, two phrases separated by commas are evaluated.
  • First, before the right operand is evaluated, the left operand is always measured, and all negative effects are accomplished.

Similar questions