Multiple Choice
Given the following strucure definition, what is the correct way to initialize a variable called today?
Struct DateType
{
Int day;
Int month;
Int year;
}
A) DateType today1,1,2000) ;
B) DateType today = 1,1,2000) ;
C) DateType today = {1,1,2000) ;
D) DateType today = {1,1,2000,0) ;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q7: A structure definition ends with the closing
Q8: In a struct, all members are _
Q9: You specify an individual member of a
Q10: given the following class definition, how could
Q11: Which part of the ADT tells the
Q13: What can a constructor return? _
Q14: Given the following class, what would be
Q15: Member functions of a class<br>A) may not
Q16: The name of a constructor is _
Q17: A member function that gets called automatically