Thread
:
which one is "standard"...
View Single Post
Re: which one is "standard"...
(#
6
)
sfx1999
Member
Status:
Offline
Posts: 534
Join Date: Jan 2004
Location: Pittsburgh, PA, USA
Re: which one is "standard"... -
18-05-2004
In MinGW, you cannot declare an int inside of a loop. It says something about C99 mode. You would have to have it like this:
Code:
int i; for (i=0;i<10;i++) { printf("Lalalalalalala"); }
sfx1999
View Public Profile
Send a private message to sfx1999
Find More Posts by sfx1999