- 论坛徽章:
- 0
|
t0.cpp:
#include <iostream>
#include <iomanip>
struct employee {
short int cmplno;
char name[20];
float wage;
};
void HexDump(void* data, int length);
int main()
{
employee emp = {
123,
"Andy Jones",
32.43
};
HexDump(&emp, sizeof emp);
return 0;
}
void HexDump(void* data,int length)
{
char* cp = (char*)data;
for (int i = 0 ; i < length; i++) {
if ((i%8)==0)
std::cout << std::endl;
unsigned int ch = * cp++ & 0xff;
std::cout << std::setw(2)
<< std::hex << ch << ' ';
}
} |
g++ t0.cpp -o t0.exe
运行
d:\code>t0
7b 0 41 6e 64 79 20 4a
6f 6e 65 73 0 0 0 0
0 0 0 0 0 0 0 0
52 b8 1 42
运行
d:\code>t0.exe
7b 0 41 6e 64 79 20 4a
6f 6e 65 73 0 0 0 0
0 0 0 0 0 0 3c 4f
52 b8 1 42
为什么同样的程序运行结果会不同呢? |
|