作业: 请简述字节序的概念,并用联合体(共用体)的方式验证计算机是大端还是小端?文章来源地址https://www.toymoban.com/news/detail-412272.html
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
/*
程序要求:请简述字节序的概念,并用联合体(共用体)的方式验证计算机是大端还是小端?
*/
union
{
unsigned int a;
char b;
} duan;
int main(int argc, const char *argv[])
{
duan.a = 0x12345678;
if (0x78 == duan.b)
{
printf("这是小端\n");
}
else if (0x12 == duan.b)
{
printf("这是大端\n");
}
system("pause");
return 0;
}
文章来源:https://www.toymoban.com/news/detail-412272.html
到了这里,关于网络编程 作业(4.6)的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!