This is an efficiency question about 64 bit ints. Assuming I don\'t need to modify the value of a \"int\" parameter, should I pass it by value or reference.
Assu
Even on a 64 bit machine pass by value is better (with some very few exceptions), because it can be passed as a register value.