doubt regarding sequence points
- by tushar
i recently came across a question about sequence points in c++ at this site
what the code will output:
int c=0;
cout<<c++<<c;
it was answered that the output is undefined and << is not a sequence point but still i want to know why does it that even if i compile it 25 times it still prints 01