Comma operator returns the value of the rightmost operand. #includemain(){ int i, j; printf("%d",(i = 0, j = 10));} 10