Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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.

Doing this in C will throw errors:

struct data_msg { uint8_t id = 25; }

like image 358
Dan Avatar asked Oct 15 '25 22:10

Dan


1 Answers

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
    // ...
}
like image 102
Ted Lyngmo Avatar answered Oct 18 '25 12:10

Ted Lyngmo



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!