Explain about Initializing Structures with example.

if the structure object has automatic storage class, then its members have indeterminate initial values.
example.
Song_t mySong = { "What It Is",
                  "Aubrey Haynie; Mark Knopfler",
                  "Mark Knopfler",
                  297,
                  { 9, 26, 2000 }
                };               

0 Comment "Explain about Initializing Structures with example."

Post a Comment