In article <11480015 at hpsmtc1.HP.COM> swh at hpsmtc1.HP.COM (Steve Harrold) writes: > a++ *= b is DIFFERENT from a++ = a++ * b ; >The first case increments "a" once, the second TWICE. Right idea, wrong example. This one isn't legal C.