I am writing a program in C++. I am having a problem with the code when I assign multiple values to a single variable. I am confused about the particular logic as there is no decrement operator in the code but when i
assign the multiple values its logic is not completely understood by me:
int main()
{
int j = 1;
int i = (j+2, j+3, j++);
cout<<"value is "<<i;
getch();
return 0;
}
Output is 1
. I don't know one is assigned to i
.
variable j is post increment so the current value of j is put into i and then j is incremented.
You can think of this as being:
Where the variables
temp
andtemp1
do not really exist and are thrown away.