I am reading TCPPPL by Stroustrup. In the topic "Array", I found this:
char v4[3]={'a', 'b', 0};
Then it mentions that "there is no array assignment to match the initialization",i.e. the following gives an error:
void f()
{
v4={'c','d',0}; //error: no array assignment
}
What does the author mean here? Does he mean that after initializing the array you can't re-assign it?