Advertisements
Advertisements
Question
Write a method which is used to swap the values of two memory locations without using a third variable.
Code Writing
Solution
without using a third variable - call by reference
void swap(int a, int b)
{System.out.println(a + " " + b);
a = a + b;
b = a - b;
a = a − b;
System.out.println(a + " " + b);
}
shaalaa.com
Is there an error in this question or solution?
Chapter 5: User - Defined Methods - EXERCISES [Page 337]