Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!cs.utexas.edu!rutgers!elbereth.rutgers.edu!maung From: maung@elbereth.rutgers.edu (tin maung) Newsgroups: comp.lang.c++ Subject: Re: typdef int *(il[8][8]); Message-ID: Date: 14 Feb 89 03:42:54 GMT References: <8901@alice.UUCP> Distribution: comp Organization: Rutgers Univ., New Brunswick, N.J. Lines: 19 <8901@alice.UUCP> gives > typedef int *il[8][8]; as a substitute for typedef int *(il[8][8]); That should work here. But if you can't remember a precedence rule, or if the situation is tougher, you might try the following approach: typedef int *intptr; typedef intptr il[8][8]; It's messy, but it works. -------------------------------- Barry Schwartz (...!rutgers!cdspr!bbs), thanks to Tin Maung