RosettaCodeData/Task/Higher-order-functions/C/higher-order-functions-4.c

8 lines
108 B
C
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
double* funcToBePassed(long* parameter);
/* ... */
int* outInt;
outInt = myFuncComplex(&funcToBePassed);