abh - HTMLify profile

abh
509 Files
102923 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;
}