/* ECP: FILEname=fig8_9.c */ /* 1*/ #include /* 2*/ main( void ) /* 3*/ { /* 4*/ int Ch; /* Must Be An int!! */ /* 5*/ while( ( Ch = getchar( ) ) != EOF ) /* ( ) Are Needed!! */ /* 6*/ { /* 7*/ putchar( Ch ); /* 8*/ if( Ch == '\n' ) /* 9*/ putchar( '\n' ); /*10*/ } /*11*/ return 0; /*12*/ }