When we passed the compare function in the bubble sort function, we wrote bool &(cmp) ( int a, int b).
I didn’t understand that what is &cmp. I think it is the way of calling the compare function although i have the doubt that it why is it being called &cmp and not being called like &compare.