Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!samsung!zaphod.mps.ohio-state.edu!uwm.edu!ux1.cso.uiuc.edu!osiris.cso.uiuc.edu!gordon From: gordon@osiris.cso.uiuc.edu (John Gordon) Newsgroups: comp.lang.c Subject: Re: Comparing strings... Message-ID: <1990Oct17.030157.460@ux1.cso.uiuc.edu> Date: 17 Oct 90 03:01:57 GMT References: <2205.271700c2@cc.nu.oz.au> <1990Oct13.190106.15615@ux1.cso.uiuc.edu> <10678.271ade27@amherst.bitnet> Sender: news@ux1.cso.uiuc.edu (News) Organization: University of Illinois at Urbana Lines: 21 Also, one other thing: for() and while() loops are essentially identical. The following loops are exactly the same: #1) for(i = 0; i < 100; i++) { body of loop } #2) i = 0; while(i < 100) { body of loop i++; } Hope it helps.