union测试计算机大小端

#include 
using namespace std;

void checkCPU()
{
    union MyUnion{
        int a;
        char c;
    }test;
    test.a = 1;
    if (test.c == 1)
        cout << "little endian" <

你可能感兴趣的:(union测试计算机大小端)