show/hide this revision's text 2 added 100 characters in body

Note that your first example doesn't work, either. It needs to be:

static const char *daytab[] = {
    "hello",
    "world"
};

Note the const.

Edit: And by "doesn't work", I mean bad practice and prone to errors, which is arguably worse.

show/hide this revision's text 1

Note that your first example doesn't work, either. It needs to be:

static const char *daytab[] = {
    "hello",
    "world"
};

Note the const.