8 lines
75 B
C
8 lines
75 B
C
long
|
|
exchange(long *xp, long y)
|
|
{
|
|
long x = *xp;
|
|
*xp = y;
|
|
return x;
|
|
}
|