Use of comma operator

Reading up on the tutorial about the comma operator, what does it mean:

When the set of expressions has to be evaluated for a value only the right most expression is considered? When both sides are considered?

 
  a = (b=3, b+2);


And any other examples of using the comma operator?
Topic archived. No new replies allowed.