Solved

After the Following Declaration, You Can Define and Initialize a Variable

Question 29

Multiple Choice

After the following declaration, you can define and initialize a variable birth of this structure type as follows ____.
Struct Date
{
Int month;
Int day;
Int year;
};


A) Date birth = {12, 28, 1987};
B) struct Date birth = {12, 28, 1987};
C) Date birth = {12; 28; 1987};
D) struct Date birth = {12; 28; 1987};

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions