IBM explains C++ pass by reference in the example below (source included).
If I changed void swapnum... to void swapnum(int i, int j), wou
void swapnum...
void swapnum(int i, int j)
Yes, but that means that swapnum will no longer work as the name implies