Home > Back-end >  For help, DEVC can't run the program
For help, DEVC can't run the program

Time:02-09

Show 'for' loop initial declarations are only allowed in C99 mode
How to solve this problem, by the way, could you tell me what bosses recommend? (in addition to DEVC++)

CodePudding user response:

Don't write
for(int i=0; i<10; I++)
Written
int i;
.
for(i=0; i<10; I++)
It is good

CodePudding user response:

Under Linux using GCC/g + + compiler plus vim editor;
  • Related