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.

ccs5 结构体初始化的问题



struct a {

int b;

int c;

}

struct a a1 = {
 .b = 1,
 .c = 2
};

支持结构体的这种初始化方式吗