int zip1, zip2; void swap(int *p, int *q) { int t = *q; *q = *p; *p = t; } void call_swap() { swap(&zip1, &zip2); }