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?
|
|
|
|
|
|
|
You can, if the pointers point to global objects:
|
||
|
|
|
|
|
||
|
|
|
|
A const struct can only be initialized statically. |
||
|
|
