Name: Anonymous 2010-08-28 19:43
[ ] K&R C
[ ] C89
[ ] C99
[ ] C1x
[ ] C89
[ ] C99
[ ] C1x
struct some_struct x;x.a = &a;x.b = NULL;x.c = NULL;x.d = NULL;struct some_struct x = {&a, NULL, NULL, NULL}; is perfectly valid C89?