c++
-
C/C++ - 쉼표연산자 : Comma Operator프로그래밍/C 2022. 3. 11. 16:12
In the C and C++ programming languages, the comma operator (represented by the token ,) is a binary operator that evaluates its first operand and discards the result, and then evaluates the second operand and returns this value (and type); there is a sequence point between these evaluations. The use of the comma token as an operator is distinct from its use in function calls and definitions, var..