RosettaCodeData/Task/Higher-order-functions/C/higher-order-functions-5.c
2023-07-01 13:44:08 -04:00

5 lines
108 B
C

int* (*funcPointer)( double* (*funcParameter)(long* parameter) );
/* ... */
funcPointer = &myFuncComplex;