Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!seismo!columbia!rutgers!ucla-cs!zen!ucbvax!decvax!michaud From: michaud@decvax.UUCP (Jeff Michaud) Newsgroups: comp.lang.c Subject: Re: possible structure initialization bug Message-ID: <130@decvax.UUCP> Date: Tue, 18-Aug-87 00:59:53 EDT Article-I.D.: decvax.130 Posted: Tue Aug 18 00:59:53 1987 Date-Received: Wed, 19-Aug-87 04:40:51 EDT References: <352@mcdsun.UUCP> Lines: 10 What you really want is: struct { int foo[2][2]; } xyz = { 1, 2, 3, 4 }; Notice only a depth of 1 on the {} nesting.