Path: utzoo!utgpu!watserv1!watmath!att!att!linac!pacific.mps.ohio-state.edu!zaphod.mps.ohio-state.edu!sol.ctr.columbia.edu!lll-winken!unixhub!shelby!csli!poser From: poser@csli.Stanford.EDU (Bill Poser) Newsgroups: comp.lang.c Subject: Re: How do you declare a pointer to a two dimensional array? Message-ID: <16189@csli.Stanford.EDU> Date: 3 Nov 90 09:13:02 GMT References: <9197@aggie.ucdavis.edu> Reply-To: poser@csli.stanford.edu (Bill Poser) Organization: Center for the Study of Language and Information, Stanford U. Lines: 10 In article <9197@aggie.ucdavis.edu> rogers@iris.ucdavis.edu (Brewski Rogers) writes: >given the array: > > float spam[4][4]; > >How do I declare a pointer to it? Is this possible? float (*spamp) [4][4]; declares spamp to be a pointer to a 4x4 array of floats.