Hello,

I want to know the difference between the following two?

void some_func(int &a);

void some_func(int *a);

Thank you.