C++ Intermediate Practice Test - Question 10

Last Updated :
Discuss
Comments

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)

Share your thoughts in the comments
Article Tags :