Multiple choice technology

Can we equate two function pointers using == operator..????

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Two function pointers can indeed be compared using the == operator. This checks if they point to the same function address. If both pointers point to the same function, the comparison returns true; otherwise, it returns false. This is valid and commonly used in C programming.