Path: utzoo!attcan!uunet!husc6!mailrus!ncar!noao!asuvax!nud!estinc!fnf From: fnf@estinc.UUCP (Fred Fish) Newsgroups: comp.lang.c Subject: Re: Suggested new C loop syntax (was `if (a = b)') Message-ID: <8@estinc.UUCP> Date: 22 Dec 88 17:24:16 GMT References: <5@rsoft.UUCP> <1071@goofy.megatest.UUCP> <861@quintus.UUCP> <3049@arcturus> <2485@ficc.uu.net> <264@twwells.uucp> Reply-To: fnf@estinc.UUCP (Fred Fish) Organization: Enhanced Software Technologies, Inc. Lines: 39 In article <264@twwells.uucp> bill@twwells.UUCP (T. William Wells) writes: <: < In article <8536@alice.UUCP<, ark@alice.UUCP (Andrew Koenig) writes: <: < < do { <: < < ch = getchar(); <: < < } while (ch != EOF) { <: < < process(ch); <: < < } < < do < statement < while (expr); < statement <