From: GiovanniB Newsgroups: comp.os.msdos.djgpp Subject: Using pointers Date: Fri, 7 May 1999 09:14:42 +0200 Organization: Universita' di Pisa Lines: 11 Message-ID: NNTP-Posting-Host: studenti.ing.unipi.it Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com When I declare a pointer (i.e. int* myptr) it's possible to use it in this way : for(int i = 0; i < n; i++) { myptr[i] = somenumber; } where n is a number big than biggest int ? Thanks for help.