1、大小端存储问题
#include <myhead.h>
typedef union
{
int num;
char p;
}Test;
int main(int argc, const char *argv[])
{
Test a;
a.num=0x12345678;
if(a.p==0x12)
{
printf("大端存储\n");
}
if(a.p==0x78)
{
printf("小端存储\n");
}
return 0;
}
2、思维导图
文章来源:https://www.toymoban.com/news/detail-678247.html
文章来源地址https://www.toymoban.com/news/detail-678247.html
到了这里,关于网络编程 day 1的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!