Why is prateek bhaiya using *&head in function arguments?

In this video as well as the previous one prateek bhaiya used *&head to pass head value by reference , but why can we use just &head?

because to pass by referrence, the format is:-
data_type & variable_name
data type is Node* here,
so you’ve to write Node* & head