#include // Add them all up int Funky0(const int V[]) { int r ; r = 0 ; for (int i=0; i<12; ++i) r += V[i] ; return r ; } // Find the largest int Funky1(const int V[]) { return 0 ; } // Find the smallest int Funky2(const int V[]) { return 0 ; } // Add all the even numbers int Funky3(const int V[]) { return 0 ; } // Add the largest and smallest int Funky4(const int V[]) { return 0 ; } // This must be exported. extern int (*fTab[])(const int[]) = { Funky0, Funky1, Funky2, Funky3, Funky4, NULL } ;