In C, a function pointer can be used to call a function without knowing its ________ at compile time.
- Function name
- Memory location
- Parameters
- Return type
Function pointers in C allow you to call a function by its name dynamically, making it possible to call functions without knowing their names at compile time.
Loading...