Pointer conversion is a term mostly related to the C and C++ languages, for when a pointer to one type is converted to a pointer of another type.
I am confused that why following code is not able to compile int foo(const float* &a) { return 0; } int …
c++ reference constants implicit-conversion pointer-conversion