answersLogoWhite

0

we can access and assign values of the members of a structure in a number of ways. as mentioned earlier, the members themselves are not variables .they should be linked to the structure variables in order to make them meaningful members . for example the word title , has no meaning whereas the phrase 'title of book3' .the link between a members and a variable is established using the members operator '.' which is also known as 'dot operator ' or ' period operator '.

for example , book.price

is the variable representing the price of book1 and can be treated like any other ordinary variable

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What is a structure member?

methods and variables inside the structure is callled structure member


What is meant by a structure within a structure?

A structure that is a member of another structure is a structure within a structure.


Is the default access specifier same as protected?

A private member of a class can only be accessed by methods of that class. A protected member of a class can only be accessed by methods of that class and by methods of a derived class of that class.


What kinds of access can a class member have?

Public, protected and private access members.


What is pointer to a member in objective c?

It is a pointer that points to a member of a structure.


What is a compression member of a structure?

column


What does the dot member access operator indicate in the text SystemWindowsFormsLabel?

The dot member access operator (or, in simple terms, the period) specifies the hierarchy of namespaces.


What is a movable structure which allows access to a house?

A door is a movable structure that allows access to a house. It can be opened or closed to control entry into the building.


What is a tension member of a structure?

stacture beam............


How do you get to the clubhouse in AQWorlds without membership?

You cannot. You have to be a member to access the member-only clubhouse.


Doi have access to the whole game if im a member?

Partially. Only when you buy the upgrade. If you are a tier one member, you don't have access to as much as a tier two member. In order to become a tier two member you must create a second account, and then buy a membership again. This will give you full access to everything.


What are the access control specifiers used in c plus plus?

The access control specifiers in C++ are...public - to denote that the member is accessible from any in scope codeprivate - to denote that the member is accessible only from within the containing classprotected - the same as private, except that derived classes are includedPrivate is the default for a class type object, while public is the default for a structure type object.