printf()在不同的系统上,占位符的可能有不同的写法,如:
%ld:long int, 32位平台4 bytes
%lld: long long int, 32位平台8 bytes
可以考虑使用 #include <inttypes.h> 头文件来做跨平台处理。