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 to designated initialize an arrays of structures to specify which element to be initialized in C

1 Answer

0 votes
#include <stdio.h>

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


int main(void) 
{
   struct user users[] =
   {
            [3] = { .age = 41,
                    .name = "Ash",  
                  },
            [1] = { .age = 52,
                    .name = "Axel",
                  }
   };
   
   for (int i = 0; i < 4; 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 = 0.0 users[0].name =
users[1].age = 52.0 users[1].name = Axel
users[2].age = 0.0 users[2].name =
users[3].age = 41.0 users[3].name = Ash

*/

 



answered Aug 26, 2017 by avibootz

Related questions

...