Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!samsung!sdd.hp.com!hplabs!hpda!hpcupt1!hpisod2!decot From: decot@hpisod2.HP.COM (Dave Decot) Newsgroups: comp.lang.c Subject: Re: arrays of pointers to functions Message-ID: <2550123@hpisod2.HP.COM> Date: 7 May 90 23:43:33 GMT References: <3032@ultb.isc.rit.edu> Organization: Hewlett Packard, Cupertino Lines: 11 > I have the following declared: > > int (*func[])(); > > How do I go about initializing func so that it contains pointers to extern int func0(), func1(), func2(), func3(), func4(); int (*func[])() = { func0, func1, func2, func3, func4, 0 }; Dave