Choose Category
void callbyvalue(int a, int b) { int temp; temp = b; b = a; a = temp; }
void callbyreference(int *a, int *b) { int temp; temp = *b; *b = *a; *a = temp; }