typedef struct foo {
int a;
char b;
char c;
int d;
long e;
float f;
double g;
}foo_t;
union MyUnion
{
int a;
char b;
char c;
int d;
long e;
Struct和union内存地址
最新推荐文章于 2022-10-06 18:10:30 发布
typedef struct foo {
int a;
char b;
char c;
int d;
long e;
float f;
double g;
}foo_t;
union MyUnion
{
int a;
char b;
char c;
int d;
long e;