qira/tests/loop.c

10 lines
100 B
C

#include <stdio.h>
int main() {
int i;
for (i = 0; i < 5; i++) {
printf("%d\n", i);
}
}