tags:

views:

91

answers:

2

Is there any option to zip the file using C programme without using any external application (like Zip..)?

+9  A: 

Of course, try using zlib. Or other libraries for compression. You can also code the compression algorithm yourself, but that might be too time consuming. Since you did not specify why do you need this, i can't give you a better answer.

PeterK
+1  A: 

Please find the link for some of the compression libraries available. It depends on the system you are using and the features you want. Zlib is one which i would recommend because of the configurable features and user manual.

Praveen S