For example the statement value = (x = 10, y = 5, x + y);First assigns 10 to x and 5 to y and finally assigns 15 to value. Since comma has the lowest precedence in operators the parenthesis is necessary
Example m = sizeof (sum); n = sizeof (long int);