Question: dereference a function pointer is the same as using the function pointer directly as if it's an alias for the pointed function. Similarly, apply
dereference a function pointer is the same as using the function pointer directly as if it's an alias for the pointed function. Similarly, apply & addressof operator to a function's identifier to fetch the address of the function is the same as using the function's identifier directly.
For example:
int fptrint int foo; is the same as int fptrint int&foo;
int ham left f p t rright ; is the same as int ham fptr;TrueFalse
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
