F
Fraser Ross
int
a= 4,
c= 0,
x= 100,
y= 200;
c ? ++a, x : y ; // comma before ?:
Should a be 5 at the end? If this is not an example of comma precedence
over ?: can someone give one?
Fraser.
a= 4,
c= 0,
x= 100,
y= 200;
c ? ++a, x : y ; // comma before ?:
Should a be 5 at the end? If this is not an example of comma precedence
over ?: can someone give one?
Fraser.