I made the following command:
for(int i = 1 ; i <= 3 ; i++) {etc
}
So I gave the following error when I compiled:
game.c:11:2: error: "for" loop initial declarations are only allowed in C99 mode
for(int i = 1 ; i <= 3 ; i++) {
/\ //essa seta apontando pro "f"
game.c:11:2: note: use option -std=c99 or -std=gnu99 to compile your code
What to do?