What is the correct way to set a link. I know that both work with the compiler, but I wanted to know the correct path, since I saw both in the code base.
void Subroutine(int &Parameter)
{
Parameter=100;
}
OR
void Subroutine(int& Parameter)
{
Parameter=100;
}
source
share