typedef struct NN tt;
typedef struct NN
{
u8 a,b,c,d,e,g,h;
}tt;
tt aa[6]={10,25,34,4,5,88,75};
tt L;
printf("%d \n",L.a);
为什么此时输出的是乱码 怎么改是才能对成员幅值
/************************/
typedef struct NN
{
u8 a,b,c,d,e,g,h;
}aa[1]={{10,25,34,4,5,88,75}};
这种方式对结构体成员幅值问题再哪里
/*************************/
typedef struct NN
{
u8 a,b,c,d,e,g,h;
}tt;
tt aa[]={10,25,34,4,5,88,75};
tt *L=aa;
printf("%d \n",L->c);
为什么这种方式对结构体成员进行了赋值
|