struct a {
int b;
int c;
}
struct a a1 = {
.b = 1,
.c = 2
};
支持结构体的这种初始化方式吗
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.
struct a {
int b;
int c;
}
struct a a1 = {
.b = 1,
.c = 2
};
支持结构体的这种初始化方式吗