1,075
社区成员
发帖
与我相关
我的任务
分享
#include <stdio.h>
#include <stdlib.h>
typedef struct
{
unsigned char name:8; //小项名称
unsigned char type:8; //数据类型
unsigned char data:8; //数据
}DataModeA;
DataModeA a,b;
int main(void)
{
printf("%d,%d\n",&a,&b);
system("pause");
return 0;
}