C++:struct Initialization of structures and unions What's the “dot” definition for struct attributes in C Initialization of structures and unions struct address { int street_no; char *street_name; char *city; char *prov; char *postal_code; }; struct address temp_address = { .city = "Hamilton", .prov = "Ontario" };