LoginSignup
2
1

More than 5 years have passed since last update.

c Initializing array of structures

Posted at

#include <stdio.h>

int main(int argc, char *argv[])
{
    struct Books {
       char  title[50];
       char  author[50];
       char  subject[100];
    };

    struct Books lala[] = {
        {"a", "a", "a"},
        {.title = "b", .author = "b", .subject = "b"}
    };

    printf("%s\n", lala[1].title);
    return 0;
}
2
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1