• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: 'for' loop initial declaration used outside C99 mode
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: 'for' loop initial declaration used outside C99 mode


  • Subject: Re: 'for' loop initial declaration used outside C99 mode
  • From: Andrew Pinski <email@hidden>
  • Date: Sun, 26 Jan 2003 04:41:45 -0800

you tried something like this and the compiler's default a C89 compiler with extensions:

int main()
{
int t = 0;
for(int i = 0;i < 10;i++) {
t+=i;
}
return t;
}

The `int i' inside the `for' is only available in C99, not in C89.

Thanks,
Andrew Pinski




On Sunday, Jan 26, 2003, at 04:31 US/Pacific, Vigour Vigour wrote:

I get this error message all the time when trying to build. What does this really mean?

'for' loop initial declaration used outside C99 mode

Best regards Peter




_______________________________________________
coreaudio-api mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/coreaudio-api
Do not post admin requests to the list. They will be ignored.
_______________________________________________
coreaudio-api mailing list | email@hidden
Help/Unsubscribe/Archives: http://www.lists.apple.com/mailman/listinfo/coreaudio-api
Do not post admin requests to the list. They will be ignored.

References: 
 >'for' loop initial declaration used outside C99 mode (From: "Vigour Vigour" <email@hidden>)

  • Prev by Date: 'for' loop initial declaration used outside C99 mode
  • Next by Date: Re: 'for' loop initial declaration used outside C99 mode
  • Previous by thread: 'for' loop initial declaration used outside C99 mode
  • Next by thread: Re: 'for' loop initial declaration used outside C99 mode
  • Index(es):
    • Date
    • Thread