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.
|
2 | added 100 characters in body | ||
|
Note that your first example doesn't work, either. It needs to be:
Note the const. Edit: And by "doesn't work", I mean bad practice and prone to errors, which is arguably worse. |
||||
|
1 |
|
||
|
Note that your first example doesn't work, either. It needs to be:
Note the const. |
||||