Structures and arrays of structures can be initialized by a series of values enclosed in braces, one value per member of the structure.
struct Date
{
int year;
int month;
int day;
};
struct Date us_independence_day = { 1776, 7, 4 };
struct Date uk_battles[] =
{
{ 1066, ...