picoc/tests/45_empty_for.c

17 lines
211 B
C
Raw Normal View History

#include <stdio.h>
int main()
{
int Count = 0;
for (;;)
{
Count++;
printf("%d\n", Count);
if (Count >= 10)
break;
}
return 0;
}