lang-bootstrap/05/tcc-0.9.27/tests/tests2/45_empty_for.c
2022-02-18 12:36:57 -05: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 :*/