Yes. The comma operator does not change return semantics. What will happen instead is that the left expression will be evaluated followed by the right.



#include <stdio.h>

int x = 1;

int...