From: Simz Newsgroups: comp.os.msdos.djgpp Subject: For loop problem Date: Sun, 05 Apr 1998 14:59:02 -0700 Organization: InfiNet Lines: 19 Message-ID: <3527FEA6.54FA@vegas.infi.net> Reply-To: tsim AT vegas DOT infi DOT net NNTP-Posting-Host: pm3-127.vegas.infi.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 When ever I try to use a for loop in DJGPP with a char (or any type for that matter), the loop never stops when I try to loop to the max value that type can hold. For example unsigned char index = 0; unsigned char array[256]; for (index = 0; index < 256; index++) array[index] = index; This loop never stops, I've even tried.. for (index = 0; index <= 255; index++) for (index = 0; index < 256; ++index) for (index = 0; index <= 255; ++index) And I need all 256 iterations for my programs to work. Any sugestions? Simz tsim AT vegas DOT infi DOT net