I came across this code:
if (1, true) {/*...*/}
What does it actually mean? While this evaluates to true:
void foo(){}
...
if(1, foo()) {/*...*/}
this doesnt compile:
void foo(){}
...
if (1 == foo()) {/*...*/}
obviously because compiler expects foo() to return some integral value. I thought that the comma translates to some operator. Does that comma in the if clause translate to something internally?