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
Pass by value - definitely. If the system is 64-bit it means it copies 64-bit word extremely fast.