Solved

Given the Following Strucure Definition, What Is the Correct Way

Question 12

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:

verifed

Verified

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

Related Questions