📄 endian.c
字号:
/* This is a lowest-common-denominator program which should compile under
the default cc on any system, no matter how primitive (even the SunOS
one - note the use of 1970s-vintage octal escapes). This is necessary
because it's compiled before we can try and select a decent compiler via
the makefile */
#include <stdio.h>
#include <stdlib.h>
int main()
{
if( *( long * ) "\200\0\0\0\0\0\0\0" < 0 )
printf( "-DDATA_BIGENDIAN" );
else
printf( "-DDATA_LITTLEENDIAN" );
return( 0 );
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -