标签:存储 \n 模式 stdio.h har check int cpu print
大小端是由cpu硬件决定的#include <stdio.h>
int check_sys()
{
int i = 1;
return (*(char *)&i);
}
int main()
{
int ret = check_sys();
if(ret == 1)
{
printf("该电脑是小端\n");
}
else
{
printf("该电脑是大端\n");
}
system("pause");
return 0;
}
标签:存储 \n 模式 stdio.h har check int cpu print
原文地址:https://blog.51cto.com/14233078/2382118