Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!usc!apple!portal!cup.portal.com!smf From: smf@cup.portal.com (Steven Murray Field) Newsgroups: comp.lang.c Subject: Re: arrays of pointers to functions Message-ID: <29712@cup.portal.com> Date: 8 May 90 04:11:51 GMT References: <3032@ultb.isc.rit.edu> Organization: The Portal System (TM) Lines: 10 Try the following for generic definition: [extern] func0(), func1(), func2(),...; static int (*func[])() {func0, func1, func2,...}; Ooops.................^ don't forget the '='. Steve