In a sample c++ code I will open a file and print each char in hexa file has only 16 chars but why ffffff will print after each heax values?
char buff[256];
// buff filled with fread
for(i=0;i<16;i++)
printf("%x",buff[i]);
Output is:
4affffff67ffffffcdffffff
Why is this?