Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
2  
This is weird, you can't mix typedef and static. Are you sure this declaration even compiles? When I tried, I got error: multiple storage classes in declaration specifiers since both static and typedef count as storage specifiers, and you can't have several. – unwind Aug 24 '12 at 11:45

3 Answers

up vote 2 down vote accepted

You need to define the struct first, then instantiate it in a static variable

typedef struct {
  int a;
  int b;
} Hello;

static Hello hello;

Then you can access your data like this :

hello.a = 42;
share|improve this answer

You can define a struct and make an instance simultaneously with:

static struct Hello {
  int a,b;
} hi;

struct Hello *test() { return &hi; }

However as far as I am aware there's no way to combine this with a typedef as well.

share|improve this answer

The storage class (static) is not part of a type definition.

In fact, the C standard explicitly forbids putting a(nother) storage class into a typedef declaration (ยง 6.7.1):

storage-class-specifier: typedef extern static auto register

... At most, one storage-class specifier may be given in the declaration specifiers in a declaration.

You can only make an actual object of your struct type static (as pointed out by others).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.