You are on page 1of 1

Void

main(void)
{
int x;
------Swap(int *,int
*)
-----}

Swapt(int *x,int *
y)
int temp = 0;
temp = *x;
*x = *y;
*y = temp;
}

x
y

4/16/12

You might also like