I am learning FileIO in C and was little confused with the binary files. My question is what is the use of having binary files when we can always use files in ASCII or someother format which can be easily understandable. Also in what applications are binary files more useful?
Any help on this really appriciated.Thanks!
I am learning FileIO in C and was little confused with the binary files.
Share
All files are binary in nature. ASCII files are those subset of binary files that contain what can be considered to be ‘human-readable’ data. A pure binary file is not constrained to that subset of characters that is readable.