as the tittle suggests, can someone explain to me how the value here is 6
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
int Operation1(int a, int b)
{return (a / b);
}
int Operation2(int b, int c)
{return(b -c);
}
int main()
{int a = 9, b = 3, c = 5;
//don’t forget to work out the nested functions first
int RESULT = Operation2(Operation2(a,b), Operation1(b,a));
std::cout << RESULT;
}