1#include <stdio.h> 2 3int n = 0; 4 5int 6main (int argc, char * argv []) 7{ 8 while (1) printf ("%d ", n ++ ); 9 return (0); 10} 11 12/* EOF */