摘要: 源码(结构体) 联合体 #include <stdio.h> #include <stdint.h> typedef struct{ union data { uint16_t value; uint8_t addr[2]; /* data */ }data; }reg; reg REG={0}; 阅读全文
posted @ 2022-02-23 18:09 USTHzhanglu 阅读(42) 评论(0) 推荐(0) 编辑