Practice #2
Leçon 7 sur 8 du cours Structures en C/C++ de Coddy.
Défi
FacileOn vous donne du code, créez une structure Contact pour correspondre au reste du code.
Essayez vous-même
#include <stdio.h>
// Créez la structure ici
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;
}