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...

Is structure can be inherited?

Answer Posted / priya

yes it can be in C++:

#include <iostream>
using namespace std;


struct person
{
private:
char name[20];
int age;
public:
float calsalary();
};
struct emp:public person
{
int empid;
private:
float salary;
float bonus;

};

Is This Answer Correct ?    17 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Differentiate between a constructor and a method in C++.

996


Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h

1077


Define pre-condition and post-condition to a member function in c++?

1090


Is c++ the hardest programming language?

1075


Is java made in c++?

1006


Explain public, protected, private in c++?

961


What are static type checking?

1012


What is a wchar_t in c++?

1060


What do you mean by translation unit in c++?

1283


Is C++ case sensitive a) False b) Depends on implementation c) True

1019


Explain about templates of C++.

1090


Write a program to add three numbers in C++ utilizing classes.

1059


Name the debugging methods that are used to solve problems?

1039


What are the various storage classes in C++?

1090


What is the full form of dos?

1050