Practice #2
Урок 7 из 8 курса Структуры в C/C++ на Coddy.
Задание
ЛегкоВам дан код, создайте структуру 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;
}