Showing posts with label swapping. Show all posts
Showing posts with label swapping. Show all posts

Sunday, 2 June 2013

SWAPPING....----><-------

Swapping----><-----

#include<stdio.h>
#include<conio.h> 
int swap(int*, int*);
int main()
{
   int x, y;
   printf("Enter the value of x and y\n");
   scanf("%d%d",&x,&y);
   printf("Before Swapping\nx = %d\ny = %d\n", x, y);
   swap(&x, &y); 
   printf("After Swapping\nx = %d\ny = %d\n", x, y);
   getch();
   return 0;
   
}
int swap(int *a, int *b)
{
   int temp;
   temp = *b;
   *b = *a;
   *a = temp;   
}

Wednesday, 22 May 2013

Swapping using function

                                        Swapping using function 


#include<stdio.h>
#include<conio.h>
int swap(int*, int*);

int main()
{
   int x, y;

   printf("Enter the value of x and y\n");
   scanf("%d%d",&x,&y);

   printf("Before Swapping\nx = %d\ny = %d\n", x, y);

   swap(&x, &y);

   printf("After Swapping\nx = %d\ny = %d\n", x, y);
   getch();
   return 0;
 
}

int swap(int *a, int *b)
{
   int temp;

   temp = *b;
   *b = *a;
   *a = temp;
}