c0a21f5c37
for (;;) Fixes issue 93 git-svn-id: http://picoc.googlecode.com/svn/trunk@474 21eae674-98b7-11dd-bd71-f92a316d2d60
17 lines
211 B
C
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;
|
|
}
|