This program duplicates text files including itself. Specify a filename and it will create a duplicate file called "duplicate_(GIVEN_FILENAME)"
- Compile this C++ program with the given makefile
make duplicator
- Run program
./duplicator
- Type in filename that should be duplicated when prompted
Enter the filename that should be duplicated: (YOUR_FILENAME)
The duplicate file will be created in the current working directory named "duplicate_(GIVEN_FILENAME)"