I have an array,
string data[248][5],
which produces the error "Too many initializers".
Each one of the 248 rows has 5 items with
a maximum total length of 173 characters.
I am using Visual Studio 6.0. Should I allocate memory
for this array to avoid the error? If the answer is "Yes", would you
please be kind enough to tell me how?
Thank you very much.
maria
XP, 3.4GB CPU, 2GB RAM
string data[248][5],
which produces the error "Too many initializers".
Each one of the 248 rows has 5 items with
a maximum total length of 173 characters.
I am using Visual Studio 6.0. Should I allocate memory
for this array to avoid the error? If the answer is "Yes", would you
please be kind enough to tell me how?
Thank you very much.
maria
XP, 3.4GB CPU, 2GB RAM
Comment