0%

C语言测试CPU大端小端模式

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include<iostream>
#include<stdio.h>

using namespace std;

struct test1 {
//cpu中内存对齐分配
char a;//4个字节
int b;//4个字节
char c;//4个字节
};<!--more-->
struct test2 {
//cpu中内存对齐分配
char a;//2个字节
char b;//2个字节
int c;//4个字节
};
union {
char a;
int b;
} test3;
int main(void) {
test1 a;
cout<<sizeof(a)<<endl;
test2 b;
cout<<sizeof(b)<<endl;
test3.b=1;
if(test3.a==1)
cout<<"小端模式"<<endl;
else
cout<<"大端模式"<<endl;
return 0;
}