Possible Duplicate:
C++ Comma Operator
what is result of operator ',' by standard? Last argument? in code like this, for example:
int a = 0;
int b = 1;
while(a,b);
or using it like this is not allowed? MSVS thiks that result is b, is it true?
sorry for duplicating, did not know how this operator called in english )