Related questions
What does \x00 mean in binary file?
Once I asked a guy "what is the difference between ASCII and Binary files?"
And he said "Binary files always have \x00"
I've been searching about this and found What is the meaning of \x00 , \x04 in PHP
so the …
How to read little endian integers from file in C++?
Say I have a binary file; it contains positive binary numbers, but written in little endian as 32-bit integers
How do I read this file? I have this right now.
int main() {
FILE * fp;
char buffer[4];
int num = 0;
fp=fopen("…