Hi!
We can declare not just variables but functions
or pointer to functions also
in the main function like this:
double my_f(double);
double (*my_fp)(double);
But what can we do with this?
For example how can we give a value for my_f or my_fp?
I try lots of variants with * and & but can not handle the problem.
my_f = *my_previuosly_defined_single_variable_double_function
does not work.