In which of the following expressions the comma is the operator (comma operator) {and is the sequence point}, and in which the comma separator {and is NOT the sequence point}
/*1*/ int a=2, b=3;
/*2*/ f( g(a), h(b) );
/*3*/ c = ( g(), h() );
Select line numbers where the comma is the operator
Login in to like
Login in to comment