Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

You have one base class virtual function how will call that
function from derived class?

Answer Posted / swetcha

class a
{
public virtual int m()
{
return 1;
}
}
class b:a
{
public int j()
{
return m();
}
}

Is This Answer Correct ?    4 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is object in oop?

1110


What is multilevel inheritance explain with example?

1142


Why is static class not inherited?

1101


if i have same function with same number of argument but defined in different files. Now i am adding these two files in a third file and calling this function . which will get called and wht decide the precedence?

3511


Why is destructor used?

1016


What is polymorphism oop?

1055


Can an interface inherit a class?

1055


Is oop better than procedural?

1032


Where You Can Use Interface in your Project

1885


design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)

6676


Can abstract class have normal methods?

1043


Write a program to reverse a string using recursive function?

2337


What is difference between oop and pop?

1160


What is abstract class in oop?

1002


What is the types of inheritance?

1092