Dear all, the following is the file compression program ,using elimination of spaces, which I saw in a book #include #include int main(int argc,char * argv[]) { FILE* fs,*ft; fs = fopen(argv[1],"r"); if(fs == NULL) { printf("\n Cannot open the file %s",argv[1]); exit(1); } ft = fopen(argv[2],"w"); if(fs == NULL) { printf("\n Cannot open the file %s",argv[2]); exit(1); } while( (ch=fgetc(fs)) ...