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

9 lines
215 B
C

void myFuncSimple( void (*funcParameter)(void) )
{
/* ... */
(*funcParameter)(); /* Call the passed function. */
funcParameter(); /* Same as above with slight different syntax. */
/* ... */
}