vote up 1 vote down star
1

Hi guys!

I'm not a specialist for ANSI C (or regular C at all), so I stumbled about this stupid thing:

I want to initialize a struct element, splitted in declaration and initialization. This is what I got:

typedef struct MY_TYPE {
  boolean flag;
  short int value;
  double stuff;
} MY_TYPE;

void function(void) {
  MY_TYPE a;
  ...
  a = { true, 15, 0.123 }
}

Is this the way to declare and initialize a local variable of MY_TYPE in ANSI C? Or is there anything better or at least working.

I feel sorry to ask this. %-)

Update I ended up having a static initialization element where I set every subelement according to my needs.

flag

50% accept rate

7 Answers

vote up 2 vote down check
void function(void) {
  MY_TYPE a;
  a.flag = true;
  a.value = 15;
  a.stuff = 0.123;
}
link|flag
vote up 4 vote down

In (ANSI) C99, you can use designated initializer to initialize a structure:

MY_TYPE a = { .flag = true, .value = 123, .stuff = 0.456 };
link|flag
vote up 0 vote down

malloc & memset or calloc

HTH

link|flag
Yeah... this might be another way to go. If only you'd expanded and described how that could be implemented =P – Kieveli Dec 1 '08 at 13:46
DId I mention that I'm not allowed to malloc? %-) – cringe Dec 2 '08 at 7:13
vote up 0 vote down

You can do it with a compound literal. According to that page, it works in C99 (which also counts as ANSI C).

link|flag
vote up 1 vote down

a = (MYTYPE){ true, 15, 0.123 };

would do fine in C99

link|flag
vote up 2 vote down

You've almost got it...

MY_TYPE a = { true,15,0.123 };

Quick search on 'struct initialize c' shows me this

link|flag
I think this is true for standard C, but not for ANSI C(99?). Also I'm bound to coding rules that won't allow me to do declaration and initialization at once, so I have to split it up and initialize every single subelement. – cringe Dec 1 '08 at 13:26
Initialization can only happen at the point of declaration. That is what it means to 'initialize'. Otherwise you're allowing an undefined value to be the inital value of your variable / struct, and then assigning a value later. – Kieveli Dec 1 '08 at 13:43
um... You have coding rules that are deliberately bad? Perhaps you should introduce the guy who wrote them to "Resource Acquisition Is Initialization" (en.wikipedia.org/wiki/RAII) – James Curran Dec 1 '08 at 15:10
Trust me, I really, really, can't change a bit of this rules at this point. It feels horrible to code it. And there are a lot of other rules right out of the 70s, like static code headers with management information like Revision number. Changes for every release, even if the source didn't change... – cringe Dec 2 '08 at 7:12
vote up 0 vote down

As far as I can remember, this is not correct syntax even in C++. You can use the braces only in the declaration. Afterwards you should initialize it field by field.

link|flag
Damn, this hurts... the struct is about 30 fields with structs inside. Anyways, have to do it that way now. – cringe Dec 1 '08 at 13:20

Your Answer

Get an OpenID
or

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