Not understanding syntax of function pointers as explained in comparators video

While declaring function pointer we should use (*identifier) while in comparators video prateek sir listed it as (&identifier).
Please clarify this doubt

*(star) and &(ampersand) both are used for call by reference. This means that the changes made to the variables inside the function are permanent and will reflect in int main().
We use * for arrays mostly. And we use & for single values - be it number, bool or character.
For example -
void func(int *arr, int &t)

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.