eci/tests/45_empty_for.c
2014-01-16 21:52:25 +01:00

17 lines
211 B
C

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