int main()
{
int i=2;printf("%d,%d,%d\n",i++,i++,i);
return 0;
}
Output of the program is incorrect in my opinion ! Please help me out.
int main()
{
int i=2;printf("%d,%d,%d\n",i++,i++,i);
return 0;
}
Output of the program is incorrect in my opinion ! Please help me out.