If I have a function called calculator () in C. And I want to call this function, obviously I would call it by the name, that is, by its signature. But if I do not know the signature of this function, and its signature is in a variable of type char, how could I call this function? that is, get the name of the function stored in the variable of type char, and call the function.
Any suggestions?
Thank you