请问CCS v5是否支持匿名联合体(或结构体),如何设置?
如:
- struct test_struct {
- char *name;
- union {
- char gender;
- int id;
- }; //这里不写名字!
- int num;
- };
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
请问CCS v5是否支持匿名联合体(或结构体),如何设置?
如: