Swap Two Numbers using Call by Reference in C

How to swap two numbers using call by reference in C , C++. In the interviews interviewer generally asked the difference between call by reference and call by value. In this post let’s understand what is call by reference and how to swap two numbers using call by reference method.

In Call By Reference method, we pass the address(reference/pointer) of an object instead of it’s value.It means the changes made to the parameter affect the passed argument. By using call by reference method no additional memory is used as we are using pointers. .To pass an address we use (&) ampresand operator.

C , C++ Programming MCQ for practice.

To declare a pointer in C asterisk(*) operator is used.

Swap two numbers using third variable  .

Swap two numbers without using third variable .

Swap two numbers using XOR operator .

Program to Swap Two Numbers using Call by Reference

Let’s write a program to swap two numbers using call by reference.

Important Points

i) In this program i use swap function to swap two numbers.

ii) In case of call by reference method, i have not return anything from swap function. As the variables are referencing memory. If i used call by value method in that case i need to return the firstnum and secondnum variable values.

Call by value & call by reference in PHP .

Tagged , , . Bookmark the permalink.

About WebRewrite

I am technology lover who loves to keep updated with latest technology. My interest field is Web Development.