Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!wuarchive!zaphod.mps.ohio-state.edu!uakari.primate.wisc.edu!aplcen!haven!adm!smoke!gwyn From: gwyn@smoke.brl.mil (Doug Gwyn) Newsgroups: comp.lang.c Subject: Re: Some interesting novice questions from a novice guy Message-ID: <14364@smoke.brl.mil> Date: 7 Nov 90 08:56:46 GMT References: <14488.27252b63@max.u.washington.edu> <3553@idunno.Princeton.EDU> Organization: U.S. Army Ballistic Research Laboratory, APG, MD. Lines: 11 In article peter@ficc.ferranti.com (Peter da Silva) writes: >I saw this discussion. Doesn't make sense. Doesn't anyone use: > while(*foo++) > continue; >anymore? Nope. I use while ( *foo++ != '\0' ) /* or != NULL, depending */ ; I figure that if anybody doesn't immediately understand this they shouldn't be messing with it in the first place.