int x=10;
int y=5;
printf("%d",(y,x));
So, here's this code. This code prints 10 when run. I'd like to know how it does so. Specifically, what the comma and parenthesis are doing in the printf statement.
int x=10;
int y=5;
printf("%d",(y,x));
So, here's this code. This code prints 10 when run. I'd like to know how it does so. Specifically, what the comma and parenthesis are doing in the printf statement.