Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to make my code more easy to read, so i want to replace a big structure set, to something more expresive, but it doesn't compile.

typedef float vec_t;
typedef vec_t vec3_t[3];

typedef struct{
        int x;
        vec3_t point;
} structure1;

//This Works just fine and is what i want to avoid
structure1 structarray[] = {
                1,
                {1,1,1}
};

//This is what i want to do but dont work
//error: expected '=', ',', ';', 'asm' or '__attribute__' before '.' token
structarray[0].x = 1;
structarray[0].point = {0,0,0};

int main()
{
        //This is acceptable and works
        structarray[0].x = 1;


        //but this dont work
        //GCC error: expected expression before '{' token 
        structarray[0].point = {1,1,1};
}

Why doesn't it compile?

share|improve this question
Rafe, Thank you for fixing the spell errors, ill try to not make the same mistake again. – banana Jan 20 '11 at 4:09

2 Answers

up vote 3 down vote accepted
structure1 structarray[] = {
  [0].x = 1,
  [0].point = { 0, 0, 0 },
};

// you can also use "compound literals" ...

structure1 f(void) {
  return (structure1) { 1, { 2, 3, 4 }};
}
share|improve this answer
Thanks that will do the job :D – banana Jan 20 '11 at 4:06
Man, that's one of those constructions that despite the fact that it's reasonably clear, makes my skin crawl. – Hack Saw Jan 20 '11 at 4:09
For the record, this is a feature called designated initializers. It is valid C99 but not valid C89 (aka C90 or ANSI C), so it will not work on platforms that do not have a C99 compiler available. – Adam Rosenfield Jan 20 '11 at 4:32

Yeah, the problem, if I recall is that the {1,1,0} style construct can only be used as an initializer, and you (reasonably) want to assign it to a variable.

share|improve this answer
Thanks for the explanation. – banana Jan 20 '11 at 4:08

Your Answer

 
discard

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

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