Advertisements
Advertisements
प्रश्न
Write a method which is used to swap the values of two memory locations without using a third variable.
कोड लेखन
उत्तर
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
या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
पाठ 5: User - Defined Methods - EXERCISES [पृष्ठ ३३७]