Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!watmath!clyde!burl!ulysses!allegra!mit-eddie!think!harvard!seismo!brl-adm!brl-smoke!smoke!gwyn@BRL.ARPA From: gwyn@BRL.ARPA (VLD/VMB) Newsgroups: net.lang.c Subject: Re: allocating arrays Message-ID: <900@brl-smoke.ARPA> Date: Thu, 15-May-86 19:18:03 EDT Article-I.D.: brl-smok.900 Posted: Thu May 15 19:18:03 1986 Date-Received: Sun, 25-May-86 11:43:51 EDT Sender: news@brl-smoke.ARPA Lines: 7 double (*parray[15])[] is not "pointer to array[15] of (double *)" but rather "array of 15 pointers to arrays of doubles". [] has precedence over *. I don't know whether this misunderstanding contributed to the original poster's problem or not. I do know that a lot of people make this []-vs.-* precedence mistake.