In the C ++ code example, I will open the file and print each char in hexadecimal format, the file has only 16 characters, but why will ffffff print after each heax value?
char buff[256]; // buff filled with fread for(i=0;i<16;i++) printf("%x",buff[i]);
Exit:
4affffff67ffffffcdffffff
Why is this?
source share