class addition { int a;int b; public: addition +(addition &x) { return new addition(a+x.a,b+x.b); //Is this addition object inside fun scope or live till the program is live } } //Is this addition object inside fun scope or live till the program is live?