I just compiled the program below in Cyqwin and on codepad
int main()
{
int k=1;
printf("%d, %d, %d\n", k, k++, k++);
}
In both cases the output was
3, 2, 1
Shouldn't it be the other way around?
Any thoughts would be welcome.
![]()
This is a discussion on Odd printf behavior? within the C Programming forums, part of the General Programming Boards category; I just compiled the program below in Cyqwin and on codepad i nt main() { int k=1; printf("%d, %d, %d\n", ...
I just compiled the program below in Cyqwin and on codepad
int main()
{
int k=1;
printf("%d, %d, %d\n", k, k++, k++);
}
In both cases the output was
3, 2, 1
Shouldn't it be the other way around?
Any thoughts would be welcome.
![]()
Read my answer here -> Comma Operator - C And C++ | Dream.In.Code
Then understand that the code has undefined behaviour.
If you dance barefoot on the broken glass of undefined behaviour, you've got to expect the occasional cut.
If at first you don't succeed, try writing your phone number on the exam paper.
I support http://www.ukip.org/ as the first necessary step to a free Europe.