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.

39,855 questions

51,776 answers

573 users

How initialize an arrays of structures in C

1 Answer

0 votes
#include <stdio.h>

struct user
{
    float age;
    char  name[30];
};


int main(void) 
{
   struct user users[] = 
   {
             { .age = 41,
               .name = "Ash",  
             },
             { .age = 52,
               .name = "Axel",
             }
   };
   
   for (int i = 0; i < 2; i++)
   { 
        printf("users[%d].age = %.1f users[%d].name = %s\n", i, users[i].age, i, users[i].name);
   }
  
   return 0;
}
    
/*
run:
 
users[0].age = 41.0 users[0].name = Ash
users[1].age = 52.0 users[1].name = Axel

*/

 



answered Aug 27, 2017 by avibootz
...