I am trying to edit this program to pass two variables to the function call using a passing-by-reference. I need help as to how to modify what I have. Any help would be appreciated.
#include "stdafx.h"
#include <iostream>
using std::cout;
using std::endl;
int incr10(int& num); // Declare function
int main(void)
{
int num = 3;
int value = 6;
int result = incr10(num);
cout << endl
<< "incr10(num) = " << result;
cout << endl
<< "num = " << num;
result = incr10(value);
cout << endl
<< "incr10(value) = " << result;
cout << endl
<< "value = " << value;
cout << endl;
return 0;
}
// Function to increment a variable by 10
int incr10(int& num) // Function with reference argument
{
cout << endl
<< "Value received = " << num;
num += 10; // Increment the caller argument
return num; // Return the incremented value
}