> 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