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

C++
0

calling by reference c++

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

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

Browse Popular Code Answers by Language