Is this an structure or an array?
I think is an structure because it starts with struct, but it has the [4] which is only in arrays :S

Code:
struct part data[4] =
	{
       {1, "Smith"},
       {2, "Jones"},
       {3, "Adams"},
    {4, "Wilson"}
    };