In C the following is valid code:
if ((a, a+b, a*b) >= 0) {
....
}
Does the (a, a+b, a*b) part have a special name?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
x, yis called a comma expression.,is called the comma operator in C and(x, y, z)is the same as((x, y), z).It must not be confused with the comma that separates function arguments and which is not the comma operator.