receiving function pointers and storing them in variables in standard c
I would like to have a function called "get_example_by_id" which takes in an int l and "returns" int a, b and two function pointers f and J. My initial take would be: int a, b; double (*f) (double), (*J) (double, double); get_example_by_id(l, &a, &b, &f, &J); Later on, I need f and J to be… Read More receiving function pointers and storing them in variables in standard c