C语言fread读取二进制文件时,读取结果全都是零,编译运行都没问题,但是就是结果显示不对,猜想可能有几个原因:
1. 大小端没处理好,设置了程序判断机器为little endian,但是,身为小白的我不知大小端转换怎么换,应该是在fread之前转换,还是在fread之后?我下面程序中的转换不知道对不对啊
😂而且什么时候应该做大小端转换呢?
2.用printf打印显示会不会有问题?目标文件是以short 格式存储的二进制文件,fread读取之后直接printf会不会有问题?
代码如下,希望有大神帮忙看一下有什么问题···
#include
#include
#include
#include
/*define the row*column of the image file*/
#define N_ROW 1
#define N_COL 9
/*swap the little/big endian of bytes*/
#define SWAP_2(x) ( (((x) & 0xff) << 8) | ((unsigned short)(x) >> 8) )
#define SWAP_4(x) ( ((x) << 24) | \
(((x) << 8) & 0x00ff0000) | \
(((x) >> 8) & 0x0000ff00) | \
((x) >> 24) )
#define FIX_SHORT(x) (*(unsigned s