What would be the output of following program and why? I am not able to understand the logic behind it.
main()
{
int x = 10;
int y = 5;
printf("%d",(y,x));
return 0;
}
What would be the output of following program and why? I am not able to understand the logic behind it.
main()
{
int x = 10;
int y = 5;
printf("%d",(y,x));
return 0;
}