From: h2owong AT hknet DOT com (Walter Wong) Newsgroups: comp.os.msdos.djgpp Subject: Question about pointer Date: Fri, 18 Sep 1998 09:25:21 GMT Organization: Water World Reply-To: h2owong AT hknet DOT com Message-ID: <360224e3.23441421@news.hknet.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit NNTP-Posting-Host: 202.67.249.104 Lines: 15 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk Can anyone correct me if I am wrong. int *b = &a This line is same as int *b b = &a also This line *a++ = *b++ same as a++; b++; *a = *b Thanks.