Files
alecc/examples/tests/while_test.c
2025-08-23 13:50:26 +02:00

11 líneas
134 B
C

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