Write a C++ program that copies one file into another file and compresses the first file
while copying it. Open the file saved as inComp.txt (or .dat),
save the compressed
version
of the same file as outComp.txt(or .dat) You will use a compression
scheme that replaces
multiple whitespace characters with a single space character.
Whitespace is defined as
spaces, tabs, and newlines. A multiple instance of whitespace
is defined as two ory
more
whitespace characters appearing in sequence. For example, if three spaces appear
as
consecutive characters, then replace all three with a single space. If two spaces
, tabs,
two
tabs, and one newline character appear in sequence, then replace, then replace
all of the
whitespace characters with a single space.
I