c code:
#include<stdio.h>
void main(){ int a=2,b=4,c=6,x,y; y=(x=a+b),(b+c); printf("y=%d,x=%d\n",y,x);}