Data hosted with ♥ by
Pastebin.com
-
Download Raw
-
See Original
void
naiveSwap
(
int
*
x
,
int
*
y
)
{
int
temp
=
*
x
;
*
x
=
*
y
;
*
y
=
temp
;
}