abh - HTMLify profile
abh
556 Files
161067 Views
Latest files of /abh/learning/c/BPPL/Phase-1/pointers
#include <stdio.h>
void swap(int *a, int *b) {
int t;
t = *a;
*a = *b;
*b = t;
}
void swap(int *a, int *b) {
int t;
t = *a;
*a = *b;
*b = t;
}