网络编程DAY 1

网络编程DAY 1_第1张图片

 字节序判断:

#include 

union test
{
    char ch;// 0x78
    int num;// 0x12 34 56 78
};

int main(int argc, char const *argv[])
{
    union test t;
    t.num = 0x12345678;
    if(0x78 == t.ch)
    {
        printf("small endian.\n");
    }
    else
    {
        printf("big endian.\n");
    }
    return 0;
}

你可能感兴趣的:(c语言,开发语言,网络)