ここに構造体があります
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 量のデータを入力するとします。
メンバーに基づいてこの構造体の配列インデックスを検索し、その「顧客」情報を出力する簡単な方法は何ですか。具体的には、州ごとに顧客を探しています。