A comma operator takes two expressions, evaluates them from left to right, and returns the right expression's value.
We increase the value of x by one (x++), add one to x (x + 1), and assign x to y. Therefore, x is 11, and y is 12 after the statement.