Re: one line struct initialization

Tech-Archive recommends: Fix windows errors by optimizing your registry



What goes in the dots.

struct abc { int x; double y; AnotherStruct s; };
abc y = { 100, 3.14, ??? };

It works up until the ???, since it's a struct. I don't know what to
put there.

Zytan

.