Hello,
when I give fprintf the character 0x0A, then it prints out 0x0D and 0x0A (which is \n in Windows). How can I print only 0x0A? I need to print a picture into a file containing 16-bit pixels, (and some bytes contain the value of 0x0A,) so it is very bad if I cannot do it because of this bug.
fprintf(file, "%c", 10);
Greetings,
Dani