English

Write a method which is used to swap the values of two memory locations by using a third variable. - Computer Applications

Advertisements
Advertisements

Question

Write a method which is used to swap the values of two memory locations by using a third variable.

Code Writing

Solution

by using a third variable - call by value
void swap (int a, int b)
{
System.out.println(a + " " + b);
int temp = a;
a = b;
b = temp;
System.out.println(a + " " + b);
}
shaalaa.com
  Is there an error in this question or solution?
Chapter 5: User - Defined Methods - EXERCISES [Page 337]

APPEARS IN

Avichal Computer Applications [English] Class 10 ICSE
Chapter 5 User - Defined Methods
EXERCISES | Q VI. 10. (a) | Page 337
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×