C program to check little vs. big endian

发布时间:2024年01月15日
void main()
{
        int n = 1;
        // little endian if true
        if(*(char *)&n == 1)
                printf("This is little endian\n");
        else
                printf("This is big endian\n");
}

Suppose we are on a 32-bit machine.
And char type is 8 bits
在这里插入图片描述
在这里插入图片描述

文章来源:https://blog.csdn.net/qq_38963393/article/details/135592634
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。