Path: utzoo!attcan!uunet!lll-winken!ames!pasteur!ucbvax!hplabs!hpda!hpcuhb!hpsmtc1!swh From: swh@hpsmtc1.HP.COM (Steve Harrold) Newsgroups: comp.lang.c Subject: Re: Would *you* get caught by this one? Message-ID: <11480015@hpsmtc1.HP.COM> Date: 13 Jan 89 16:39:01 GMT References: <139@mole-end.UUCP> Organization: Hewlett Packard, Cupertino Lines: 5 When you have a++, the results are going to be different, i.e. a++ *= b is DIFFERENT from a++ = a++ * b ; The first case increments "a" once, the second TWICE.