mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 21:09:15 +00:00
10a923d083
svn path=/trunk/; revision=11364
16 lines
194 B
C
16 lines
194 B
C
/* $Id: count.c,v 1.1 2004/10/21 05:12:00 sedwards Exp $
|
|
*
|
|
*/
|
|
#include <stdio.h>
|
|
|
|
int n = 0;
|
|
|
|
int
|
|
main (int argc, char * argv [])
|
|
{
|
|
while (1) printf ("%d ", n ++ );
|
|
return (0);
|
|
}
|
|
|
|
/* EOF */
|