picoc/c-tests/loop.c
2020-06-09 12:31:20 +01:00

11 lines
91 B
C

int main(void)
{
int j = 0;
for (int i = 0; i < 4; i++) {
j = i + 2;
}
return 0;
}