/* Name: copyFile 1 Copyright: Author: Professor Langsam Date: 17/03/06 12:24 Description: Echos what is typed character by character. Program ends when a Ctrl-z is typed. */ #include #include using namespace std; int main(int argc, char *argv[]) { int c; while (!cin.eof()){ c = cin.get(); cout.put(c); } system("PAUSE"); return EXIT_SUCCESS; }