How to create an array of structs of strings and numbers in c

1 Answer

0 votes
#include <stdio.h>
#include <string.h>

#define SIZE 5

typedef struct Employee {
    char Name[16];
    int ID;
} Employees;


int main()
{
    Employees emp[SIZE] = {
        {.Name = "Tom", .ID = 89234},
    };

   
    emp[1].ID = 90193;
    strcpy(emp[1].Name, "Emma");
    
    emp[2].ID = 87431;
    strcpy(emp[2].Name, "Juniper");

    for (int i = 0; i < SIZE; i++) {
        printf("Name: %s - ID: %d\n\n", emp[i].Name, emp[i].ID);
    }

    return 0;
}




/*
run:

Name: Tom - ID: 89234

Name: Emma - ID: 90193

Name: Juniper - ID: 87431

Name:  - ID: 0

Name:  - ID: 0

*/

 



answered Feb 19, 2024 by avibootz
...