Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Default initialization for a struct in C

I want to do something like this in plain C:

struct data_msg {
    uint8_t id = 25;
    uint8_t       data1;
    uint32_t      data2;
}

I need the id to be set to 25 by default so that when I create an instance of the struct, the id is already set to 25, like this:

struct data_msg      tmp_msg;
printf("ID: %d", tmp_msg.id); // outputs ID: 25

Is there a way to do this in C? I know it can be done in C++, but have not figured a way in C.

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

Doing this in C will throw errors:

struct data_msg { uint8_t id = 25; }

>Solution :

Unfortunately, you can’t, but if you do this a lot, you could create a constant that you use for initialization:

struct data_msg {
    uint8_t       id;
    uint8_t       data1;
    uint32_t      data2;
};

const struct data_msg dm_init = {.id = 25};

int main(void) {
    struct data_msg var = dm_init;  // var.id is now 25, data1 = 0, data2 = 0
    // ...
}
Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading