Question: Given the following code, which function(s) get called if we call the function f() pointed at by ptr? class A { public: }; virtual

Given the following code, which function(s) get called if we call the 

Given the following code, which function(s) get called if we call the function f() pointed at by ptr? class A { public: }; virtual int f() { return 0; } class B public A { public: }; virtual int f() { return 1; } A *ptr = new B();

Step by Step Solution

3.40 Rating (150 Votes )

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock

In the provided code there are some syntax errors and mi... View full answer

blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!