代码拉取完成,页面将自动刷新
#include <stdio.h>
#include <stdlib.h>
#define PACKED __attribute__((__packed__))
struct _test
{
char b;
int a;
short c;
} PACKED;
typedef struct _test test_t;
struct _test1
{
char b;
int a;
short c;
};
typedef struct _test1 test1_t;
int main ( int argc, char* argv[] )
{
test_t a;
test1_t b;
unsigned char* p = NULL;
a.b = 0xa5;
a.a = 0x12345678;
a.c = 0xaa55;
p = ( unsigned char* ) &a;
printf ( "0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x 0x%02x \n",
*p, * ( p + 1 ), * ( p + 2 ), * ( p + 3 ), * ( p + 4 ), * ( p + 5 ), * ( p + 6 ) );
printf ( "test_t %d\n", sizeof ( test_t ) );
printf ( "test1_t %d\n", sizeof ( test1_t ) );
return 0;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。