Files
2023-11-18 21:17:47 +03:00

13 lines
118 B
C

#include <stdio.h>
void swap(int *px, int *py)
{
int t;
t = *px;
*px = *py;
*py = t;
return;
}