ios::out
opens the file for writing.
ios::binary
makes sure the data is read or written without translating new line characters to and from \r\n
on the fly. In other words, exactly what you give the stream is exactly what’s written.
ios::out
opens the file for writing.
ios::binary
makes sure the data is read or written without translating new line characters to and from \r\n
on the fly. In other words, exactly what you give the stream is exactly what’s written.