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