Path: utzoo!attcan!uunet!lll-winken!lll-ncis!helios.ee.lbl.gov!pasteur!ames!haven!adm!smoke!gwyn From: gwyn@smoke.BRL.MIL (Doug Gwyn ) Newsgroups: comp.lang.c Subject: Re: Would *you* get caught by this one? Message-ID: <9368@smoke.BRL.MIL> Date: 14 Jan 89 12:35:58 GMT References: <139@mole-end.UUCP> <11480015@hpsmtc1.HP.COM> Reply-To: gwyn@brl.arpa (Doug Gwyn (VLD/VMB) ) Organization: Ballistic Research Lab (BRL), APG, MD. Lines: 5 In article <11480015@hpsmtc1.HP.COM> swh@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.