mirror of
https://github.com/frida/tinycc
synced 2024-12-03 21:01:54 +03:00
19 lines
240 B
C
19 lines
240 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 :*/
|