mirror of
https://github.com/reactos/reactos.git
synced 2024-11-03 13:25:57 +00:00
12 lines
130 B
C
12 lines
130 B
C
#include <stdio.h>
|
|
|
|
int n = 0;
|
|
|
|
int
|
|
main (int argc, char * argv [])
|
|
{
|
|
while (1) printf ("%d ", n ++ );
|
|
return (0);
|
|
}
|
|
|
|
/* EOF */
|