This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

BUG report

run code below, look at i,j

int i;
int j;

i=254;
j=255;

while(1)
{
i=i++;
j=j++;
}

Parents
  • We're all just a bunch of hacks here. Since you are comparing compilers' behavior for those statements, post your question to Usenet's comp.lang.c newsgroup. The people you can believe hang out there for the sole purpose of discussing Standard C and will be happy to entertain your notions of how standard compilers should handle the statements.

Reply
  • We're all just a bunch of hacks here. Since you are comparing compilers' behavior for those statements, post your question to Usenet's comp.lang.c newsgroup. The people you can believe hang out there for the sole purpose of discussing Standard C and will be happy to entertain your notions of how standard compilers should handle the statements.

Children