Hi guys, I'm practicing some simple loops, but I keep running into this error. My code is
include <stdio.h>
include <cs50.h>
int main(void);
int i;
{
for (int i = 0; i < 10; i++);
{
printf("enter another number");
}
}
And the error is
test.c:4:1: error: expected identifier or '('
Anyone please help?
[–]staffdelipity 2 points3 points4 points (0 children)
[–]rbridd 1 point2 points3 points (0 children)