Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

C++ | Destructors | Question 2

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

Predict the output of following C++ program




#include <iostream>
using namespace std;
   
int i;
   
class A
{
public:
    ~A()
    {
        i=10;
    }
};
   
int foo()
{
    i=3;
    A ob;
    return i;
}
   
int main()
{
    cout << foo() << endl;
    return 0;
}

(A) 0
(B) 3
(C) 10
(D) None of the above


Answer: (B)

Explanation: While returning from a function, destructor is the last method to be executed. The destructor for the object “ob” is called after the value of i is copied to the return value of the function. So, before destructor could change the value of i to 10, the current value of i gets copied & hence the output is i = 3. See this for more details.

Quiz of this Question

My Personal Notes arrow_drop_up
Last Updated : 12 Oct, 2021
Like Article
Save Article
Similar Reads