Menu
Coddy logo textTech

Practice #2

Lesson 7 of 8 in Coddy's C/C++ Structures course.

challenge icon

Challenge

Easy

You are given some code, create a Contact structure to match the rest of the code.

Try it yourself

#include <stdio.h>

// Create the structure here

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;
}

All lessons in C/C++ Structures