From: St Denis Family Newsgroups: comp.os.msdos.djgpp Subject: Re: Setting a pointer somewhere in memory? Date: Thu, 02 Jul 1998 19:12:42 -0400 Organization: Computers & More Inc. Lines: 19 Message-ID: <359C13EA.62A26FBE@compmore.net> References: <1998070222194900 DOT SAA13732 AT ladder03 DOT news DOT aol DOT com> NNTP-Posting-Host: port15.compmore.net Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk > i tried to use void *point[0x001B58C0], but this just gives me an error. Try void *p; test() { p = 0x001B58C0; } ---or--- void *p = 0x001B58C0 Why are you doing this anyways? tom