Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.1 6/24/83; site ecr2.UUCP Path: utzoo!hcrvax!ecrhub!ecr2!peterc From: peterc@ecr2.UUCP (Peter Curran) Newsgroups: net.lang.c Subject: Re: Initialization Message-ID: <130@ecr2.UUCP> Date: Fri, 7-Jun-85 07:54:42 EDT Article-I.D.: ecr2.130 Posted: Fri Jun 7 07:54:42 1985 Date-Received: Sun, 9-Jun-85 07:45:01 EDT References: <477@tjalk.UUCP> Organization: Emerald City Research Inc., Toronto Lines: 11 While we are on the subject of initialization... Does the C standard address the issue of initializing large arrays. Does it have something like the Fortran syntax "5 * 5" to initialize five elements to the same value? I realize you can type them in if you really know the size, but that doesn't work too well if you want the size to be controlled by a #define. The solution right now is to write initialization code, either to run when the program is started, or as a preprocessor of some sort generating the required C code. Neither is very satisfactory.