这是结构
int main() {
typedef struct {
char firstName[25];
char lastName[30];
char street[35];
char city[20];
char state[3];
int zip;
char phone[15];
int accountId;
}Customer ;
假设我用 x 量的数据填写了这个。
什么是基于其成员搜索此结构的数组索引的简单方法,然后打印该“客户”信息。具体来说,我希望按州搜索客户。