Dyskusje Q&A
Create obj with loop
0 głosów
1 OdpowiedźWe can save object into file
2 głosów
1 Odpowiedź#include <iostream>
using namespace std;
class A{
public:
void f1();
};
class B : public A{
public:
virtual void f1();
}
int main()
{
A * obj = new B;
obj.f1();
}
Ques: can we write virtual before an overridden function from the base class?? if yes which f1() should it call base class f1() or derived class f1()???
0 głosów
1 OdpowiedźPopularne dzisiaj
Audio adding
1 Votes
C#
0 Votes
%
0 Votes
Stuck in Quize
1 Votes
C Program
0 Votes
What is problem in this code
0 Votes
Software developer
0 Votes