34

int main()
{
int a,b,c,d;
a=(1,2,3);
b=1,2,3;
c=1,(2,3);
d=(1,2),3;
printf("%d %d %d %d",a,b,c,d);
return 0;
}

Output:


3 1 1 2

Related Posts