Discussions Q&R
why does the 'else' statement on this code only work on the 'if' statement before it. I want it to work for all the 'if' statements in the code (that is, if none of the 'if' statements is true, then the else statement should execute). If that is not possible, then how it can be done?
2 Votes
6 Réponses#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 Vote
1 RéponseAujourd'hui en vedette
Audio adding
1 Votes
playground input
0 Votes
Stuck in Quize
2 Votes
What is problem in this code
0 Votes
Software developer
0 Votes
C Program
0 Votes
How I can use div
0 Votes
TIPS From Veterans
1 Votes