Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

#include <stdio.

h>

int main()
{
int a,b;
scanf("%d",&a);
scanf("%d",&b);
int swap(int*c,int*d);
swap(&a,&b);
return 0;
}

int swap(int*a,int*b)
{
printf("%d %d\n",*a,*b);
int temp;
temp=*a;
*a=*b;
*b=temp;
printf("%d %d",*a,*b);
}

You might also like