I
Immortal Nephi
I tried to put fixed array into class, but the C++ Compiler generates
an error as syntax error of '{'. I don't find anything wrong. Fixed
array is used to have a list of strings.
For example
class Test
{
public:
Test();
~Test();
private:
static const char List_Strings[5][10] =
{
"abc",
"def"
};
}
an error as syntax error of '{'. I don't find anything wrong. Fixed
array is used to have a list of strings.
For example
class Test
{
public:
Test();
~Test();
private:
static const char List_Strings[5][10] =
{
"abc",
"def"
};
}