I am learning C from the K&R handbook. I know (and read) that 'b' in a fopen
call signals binary access. The book then goes on to say that this (binary access) is meaningless on UNIX systems.
The inference is that it is meaningful on Windows.
My question is, why does Windows make this distinction between text and binary and UNIX doesn't. Also, what is the distinction?
I found some things that come close to answering it, but still don't quite satisfy me:
Is there any difference between text and binary mode in file access?
http://perlmaven.com/what-is-a-text-file
Thanks in advance.