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

15 líneas
223 B
C

#include <stdio.h>
int main() {
printf("Testing simple loop...\n");
int i = 0;
while (i < 3) {
printf("i = %d\n", i);
i = i + 1;
}
printf("Loop completed!\n");
return 0;
}