开发平台(Platform): (Ex: VC++, GCC, Linux, ...)
Win32 Qt Creator MinGW32
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
无
问题(Question):
程式会读取一 binary file 读取里面的资料并 print 出来
目前 for 循环内的状况如下:
... FAC1
... FC91
index 累加到 2342 后读到的资料为 FB81
index 累加到 2344 后读到的资料为 FB41
... FB41
... FB41
但是之后读到的资料全部都是 FB41
不了解,为何 fscanf 在 FB41 前可以正常读取
但是之后却无法正常读取…
烦劳各位版友赐解
喂入的资料(Input):
input file 为连续的 binary file
档案大小为 294544
预期的正确结果(Expected Output):
预期 FB41 之后的资料应该是其他资料
而不应该一直都是 FB41
错误结果(Wrong Output):
如上所述
程式码(Code):(请善用置底文网页, 记得排版)
http://codepad.org/XsbHqY4T ←完整的 code,fscanf 有改成 fread
long file_size = 294544;
long i = 0;
for( i = 0 ; i < file_size ; i += 2 ) {
fscanf( inputFilePtr, "%c%c", &raw_data[0], &raw_data[1] );
printf( "%02X%02X\n", raw_data[1], raw_data[0] );
}
补充说明(Supplement):