From: Martin DOT Stromberg AT lu DOT erisoft DOT se (Martin Stromberg) Newsgroups: comp.os.msdos.djgpp Subject: Re: Question about pointer Date: 18 Sep 1998 10:09:54 GMT Organization: Ericsson Erisoft AB, Sweden Lines: 13 Message-ID: <6ttbhi$avq$1@antares.lu.erisoft.se> References: <360224e3 DOT 23441421 AT news DOT hknet DOT com> NNTP-Posting-Host: spica-144.lu.erisoft.se To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Walter Wong (h2owong AT hknet DOT com) wrote: : Can anyone correct me if I am wrong. : This line *a++ = *b++ : same as a++; b++; : *a = *b No, it's "*a = *b; a++; b++;". Right, MartinS