Is the following undefined or implementation-defined:
int x = 0;
printf("%d%d", ++x, x);
The order of evaluating arguments is unspecified, so:
- if
++xis evaluated first, this prints11. - if
xis evaluated first, it prints10.
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.
This is clearly undefined behavior in C++.
Same for C (emphasis mine):
Note that C11 has now a similar wording as in C++11: