CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <iostream>
using namespace std;
class base{
protected:
int parent=1;
public:
void quack(){
cout<<"quack quack from base"<<endl;
}
};
class derived: public base{
public:
int parent=2;
void quack(){
cout<<"quack quack from derived"<<endl;
}
};
int main() {
derived obj;
base obj2;
base* ptr = &obj;
base* ptr2 = &obj2;
obj.quack(); //understandable
ptr->quack(); //b-b-but...isn't it supposed to point to obj??????
ptr2->quack(); //soooo it just gave the same exact output as the previuos one ??????? HOW!
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run