Date: Tue, 22 May 2001 13:04:59 -0400 Message-Id: <200105221704.NAA19104@envy.delorie.com> X-Authentication-Warning: envy.delorie.com: dj set sender to dj AT envy DOT delorie DOT com using -f From: DJ Delorie To: djgpp AT delorie DOT com In-reply-to: <20010522124331.00567.00000895@ng-mi1.aol.com> (wcount12@aol.com) Subject: Re: Initializing arrays problem References: <20010522124331 DOT 00567 DOT 00000895 AT ng-mi1 DOT aol DOT com> Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > int days_array = { 0101,0102,0103,0104 .........}; Numbers beginning with the digit zero are octal, not decimal. When you got to 0108 it complained, because '8' is not a valid octal digit.