What is Comma Operator In C
Answers
Answered by
1
Answer:
The comma operator (represented by the token, ) is a binary operator that evaluates its first operand and discards the result, it then evaluates the second operand and returns this value (and type). The comma operator has the lowest precedence of any C operator, and acts as a sequence point.
Explanation:
hope it helps u
:)
Answered by
0
Answer:
In the C and C++ programming languages, the comma operator is a binary operator that evaluates its first operand and discards the result, and then evaluates the second operand and returns this value; there is a sequence point between these evaluations.
Similar questions