Hacker News new | ask | show | jobs
by jpr 5653 days ago
> Expressions separated by the comma operator are always evaluated left to right.

That's correct (for C), but I feel the need to add that in function calls the parameters are separated by commas, and they can be evaluated in any order.

1 comments

In the contexts of a function declaration/definition/call, comma is not acting as an operator.