home *** CD-ROM | disk | FTP | other *** search
- Path: sparky!uunet!charon.amdahl.com!pacbell.com!sgiblab!zaphod.mps.ohio-state.edu!uwm.edu!rutgers!ub!dsinc!pitt.edu!pitt!fahad
- From: fahad@cs.pitt.edu (Fahad A Hoymany)
- Newsgroups: comp.lang.c
- Subject: 2-D Arrays, Revisited.
- Message-ID: <17489@pitt.UUCP>
- Date: 17 Nov 92 00:45:13 GMT
- Sender: news@cs.pitt.edu
- Organization: Univ. of Pittsburgh Computer Science
- Lines: 10
-
- I asked about this before and I read the FAQ list but there was no answer.
- I'll try to state the problem more clearly this time.
-
- I am writing a function that should accept a 2-D array (hopefully of any
- size), operate on that array, and returns 'anything' to the caller. Please
- don't suggest I use double pointers because I do not want to restrict the
- users of my function to use them when they are used to declaring arrays
- as : int a[2][5].
-
- What should the formal parameters line look like?
-