1
struct Item { int v; }; int use_struct_array(){ struct Item arr[3]={{1},{2},{3}}; return arr[0].v+arr[1].v+arr[2].v; }