vote up 3 vote down star

I have a fairly simple const struct in some C code that simply holds a few pointers and would like to initialize it statically if possible. Can I and, if so, how?

flag

3 Answers

vote up 6 vote down check

You can, if the pointers point to global objects:

// In global scope
int x, y;
const struct {int *px, *py; } s = {&x, &y};
link|flag
vote up 1 vote down
const struct mytype  foo = {&var1, &var2};
link|flag
vote up 0 vote down

A const struct can only be initialized statically.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.