Passing Variables By Address
Instructions You may pass variables to functions either by address or by value. If you pass a variable by address, then both functions will see the changed value of the variable (if the value changes). If you pass a variable by value, you are really passing a copy of …