Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

40,026 questions

51,982 answers

573 users

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
...