/* ECP: FILEname=fig14_2.cpp */ /* 1*/ // Program to double space input. /* 2*/ #include /* 3*/ main( void ) /* 4*/ { /* 5*/ char Ch; /* 6*/ while( cin.get( Ch ) ) /* 7*/ { /* 8*/ cout.put( Ch ); /* 9*/ if( Ch == '\n' ) /*10*/ cout.put( '\n' ); /*11*/ } /*12*/ return 0; /*13*/ }