int a=2,b=4,c=6,x,y; y=(x=a+b),(b+c); printf("y=%d,x=%d\n",y,x); y=((x=a+b),(b+c)); printf("y=%d,x=%d\n",y,x); return 0;