Tag: sequence-points
-
Does the definition int a = 0, b = a++, c = a++; have defined behavior in C?
19 Does the definition int a = 0, b = a++, c = a++; have defined behavior in C? Or almost equivalently, does the , in an object definition introduce a sequence point as for the comma operator in expressions? Similar questions have been asked for C++: Does `int a = 0, b = a`…