Practice #2
Coddyの「C/C++ 構造体」コースのレッスン 7/8。
チャレンジ
簡単コードが提供されています。残りのコードに合うように Contact 構造体を作成してください。
自分で試してみよう
#include <stdio.h>
// ここで構造体を作成します
int main() {
struct Contact contact1 = {"John Doe", "123-456-7890", "john@example.com"};
struct Contact contact2 = {"Alice Smith", "456-789-0123", "alice@example.com"};
struct Contact contact3 = {"Bob Johnson", "789-012-3456", "bob@example.com"};
printf("%s %s %s\n", contact1.name, contact1.phoneNumber, contact1.email);
printf("%s %s %s\n", contact2.name, contact2.phoneNumber, contact2.email);
printf("%s %s %s\n", contact3.name, contact3.phoneNumber, contact3.email);
return 0;
}