/* Last edited on 2013-11-12 09:57:05 by stolfilocal */ typedef struct myrec_t { int foo; int bar; int baz; } myrec_t; int main(int argc, char **argv) { myrec_t x = (myrec_t){ .foo = 10, .baz = 30 }; return 0; }