大小端是由cpu硬件決定的
大端(存儲)模式,是指數(shù)據(jù)的低位保存在內(nèi)存的高地址中,而數(shù)據(jù)的高位,保存在內(nèi)存的低地址中;
小端(存儲)模式,是指數(shù)據(jù)的低位保存在內(nèi)存的低地址中,而數(shù)據(jù)的高位,,保存在內(nèi)存的高地址中
創(chuàng)新互聯(lián)主營稱多網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,成都APP應(yīng)用開發(fā),稱多h5成都微信小程序搭建,稱多網(wǎng)站營銷推廣歡迎稱多等地區(qū)企業(yè)咨詢
方法一
#include
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;
}
方法二.聯(lián)合體方法
#include
int main()
{
union un
{
char a;
int b;
};
union un un;
un.b = 1;
printf("%d",un.a);//輸出1,則為小端
system("pause");
return 0;
}