Question: C language please Write-a C program named myzip.c that simulates the zip utility in Linux. The program should fulfill be able to do the following
C language please
Write-a C program namedmyzip.cthat simulates the zip utility in Linux. The program should fulfill be able to do the following example:
./myzip test.txt > test.zip
if test.txt input is
aaaaaaaaaaaaaaaaaaaabbbbbbbbbbcccccddde
then test.zip output should be
20a10b5c3d1e
Please follow the initial program:
#include#include int main(int argc, char *argv[]) { if (argc < 2) { printf("Usage: %s FILENAME ", argv[0]); exit(1); } return 0; }
Thank you in advance!
Your answer
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
