lang-bootstrap/05/tcc-final/tests/tests2/45_empty_for.c
2025-04-18 12:38:54 +01:00

18 lines
222 B
C

#include <stdio.h>
int main()
{
int Count = 0;
for (;;)
{
Count++;
printf("%d\n", Count);
if (Count >= 10)
break;
}
return 0;
}
/* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/