True/False
Consider these hierarchical structures.
struct Date
{
int year;
//members
};
struct Person
{
Date birthDay;
//other members
};
Person Bill;
The year of Bill's birthday may be accessed as Bill.year;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q27: Structure definitions are usually global (defined outside
Q28: A data type is a collection of
Q29: There is no access to private members
Q30: Given the ShoeType structure type definition.Write a
Q31: The concept of class is central to
Q32: The scope resolution operator can be used
Q33: Write a definition for a structure type
Q34: The following definition of the structure variables
Q36: Given the ShoeType structure type definition,write a
Q37: What is the output of the following