reactos/rostests/tests/count/count.c

16 lines
145 B
C
Raw Normal View History

/* $Id$
*
*/
#include <stdio.h>
int n = 0;
int
main (int argc, char * argv [])
{
while (1) printf ("%d ", n ++ );
return (0);
}
/* EOF */