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}
int a, b;
/*1*/ f(a,b);
/*2*/ a=2, b=3;
/*3*/ int c[] = {1,2,3};
Select line numbers where the comma is the operator
Login in to like
Login in to comment