How to pass a parameter by reference in C++?
void function(int* a)
void function(int a)
void function(int& a)
void function(int&* a)
This question is part of this quiz :