I thought you could declare an array, and then later initilze it.
Like so
char* myArray[3];
//CODE INBETWEEN
myArray[3] = {
"blah",
"blah",
"blah"};
|
I thought you could declare an array, and then later initilze it. Like so
|
|||||||
|
|
Nope, you can only initialize an array when you first declare it. The reason is that arrays are not modifiable lvalues. In your case:
You don't need to specify the size, but you can if you want. However, the size can't be less than 3 in this case. Also, the three strings are written to read-only memory so something like |
||||
|
As others have said you can only use initialisers when the variable is declared. The closest way to do what you want is:
|
||||
|
|
|
Yes, you can declare an array and then later initialize it. That is where the problem starts. What you have tried would have worked well with
It helps to note that a character pointer and a string instance are two different entities; the first can point to the second. |
|||||
|
|
You thought wrong. Initialization is only possible at declaration. After that, you can only assign individual values. |
|||
|
|
|
It's an initializer expression. Can't have that code in between, got to be used on the line withe declaration. |
|||
|
|