I defined a static struct in c like this:
typedef static struct {
int a;
int b;
} Hello;
do I need to initiate the struct before I use it? and how to access the variable inside of it?
|
You need to define the struct first, then instantiate it in a static variable
Then you can access your data like this :
|
|||
|
|
|
You can define a struct and make an instance simultaneously with:
However as far as I am aware there's no way to combine this with a |
|||
|
|
|
The storage class ( In fact, the C standard explicitly forbids putting a(nother) storage class into a
You can only make an actual object of your struct type |
||||
|
|
typedefandstatic. Are you sure this declaration even compiles? When I tried, I goterror: multiple storage classes in declaration specifierssince bothstaticandtypedefcount as storage specifiers, and you can't have several. – unwind Aug 24 '12 at 11:45