RVBTCC/test/loop/while.c
2025-05-05 16:20:27 +08:00

11 lines
No EOL
158 B
C

int printf(char* format, ...);
int main() {
int i = 0;
while (i < 5) {
printf("%d ", i);
i++;
}
printf("\n");
return 0;
}