Suppose i have the following code:
#include <stdio.h>
main()
{
int a,b,c;
b=1;
c=2;
printf("%d\n",10,b=20,b=30,c=50,c=100);
printf("%d\n",b);
printf("%d\n",c);
}
o/p-10,20,50 how did the value of b became 20,not 30 ..and also the same for c?