Answers for "function call by value and call by reference in c ++"

C++
0

calling by reference c++

void fun(int *a)
{
   *a = 10;
}
Posted by: Guest on April-22-2020

Code answers related to "function call by value and call by reference in c ++"

Browse Popular Code Answers by Language