I made a program that calls this function. I know this because "Int Strength has been called" appears in the output box. However, it will not change the values that I tell it to do. I want it to get integer values from main(), then use them and return the new values. I am using a header file that only contains "int strength(int a, int s, int i)"
int strength(int a, int s, int i)
{
    using namespace std;
    cout << "Int Strength has been called" << endl;
    a = a + i;
    s = s - i;
    return a;
    return s;
}
 
     
    