My instructor mentioned using function as parameter in other function. (I don't mean using pointers. Is it possible ? I show below) I don't understand what he did. Can anyone explain with examples ? Thank you all appreciated answers.
using style is:
int test(double abc(double)){
// bla bla
}
function is:
double abc(double n){
// function main
}
The examples is written by me I'm not so sure they're right.