Multiple choice technology programming languages

We need to have a structure day of type date which has the following values. date day = {17,2,2011}; Will the following Structured Declaration Correct?

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The initialization date day = {17,2,2011}; is incorrect because structure initialization requires either matching the struct's member order exactly or using designated initializers (C99) or member names (C++). Without seeing the struct definition, we cannot confirm if this initialization syntax matches the structure's layout. The question is asking if this syntax is correct.