Operator C Tutorial

Comma operator returns the value of the rightmost operand.

#include
main(){
    int i, j;
   
    printf("%d",(i = 0, j = 10));
}
10