Xref: utzoo comp.lang.c:7573 comp.lang.fortran:469 Path: utzoo!mnetor!uunet!tektronix!tekcae!kurtk From: kurtk@tekcae.TEK.COM (Kurt Krueger) Newsgroups: comp.lang.c,comp.lang.fortran Subject: Re: Conformant Arrays in C Message-ID: <1491@tekcae.TEK.COM> Date: 25 Feb 88 16:20:20 GMT References: <42529@sun.uucp> <7297@brl-smoke.ARPA> Reply-To: kurtk@tekcae.UUCP (Kurt Krueger) Organization: Tektronix, Inc., Beaverton, OR. Lines: 4 Keywords: ANSI C Fortran Look at "The C Programming Language" by Kernighan & Ritchie on p. 110. If you set up your array like int *b[10] you can treat it as a conformal 2-d array without having to pass ANY bounds information (except for whatever the procedure logic requires).