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 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
In the provided code there are some syntax errors and mi... View full answer
Get step-by-step solutions from verified subject matter experts
