
Re: Problem with *= operator
Well, I tried it again and I still couldn't get it to work.
However, if I do something like this:
int bob = 2;
int bobette = bob * 2;
bob = bobette;
Then in this case bob is equal to 4.
Do you have any idea why this might be the case?