Show the runtime stack with the activation record instance for the subprogram addOne. Remember the dynamic link. Does addOne have side effects - why? int addOne(int &a, int & b); int main() {
int x = 5, int y = 10; cout< int addOne(int &a, int&b) { int local = 1; if (a>b) return (a + local); else return (b + local);