c ++输出char到文件给出错误的值
c++ output char to file give wrong value
我正在尝试将一些值逐字节写入文件,而当涉及到值 10 时,它会写入 0D0A 而不是仅将 0A 写入文件,知道吗?
unsigned char m = 10;
ofstream fout("1.file");
fout << m;
fout.close();
output of the file
我正在尝试将一些值逐字节写入文件,而当涉及到值 10 时,它会写入 0D0A 而不是仅将 0A 写入文件,知道吗?
unsigned char m = 10;
ofstream fout("1.file");
fout << m;
fout.close();
output of the file