我在一些C代码中有一个相当简单的const结构,它只包含几个指针,并希望在可能的情况下静态初始化它.我可以,如果是这样,怎么样?
如果指针指向全局对象,则可以:
// In global scope int x, y; const struct {int *px, *py; } s = {&x, &y};
const struct mytype foo = {&var1, &var2};