D
dog
I want to have a string array as private member, a then in constructor
set the values in array, something like this:
class obj{
string s[];
public:
obj(){
s = {"bla", "blaaa", "..."};
}
};
but, it wont compile ... please help
set the values in array, something like this:
class obj{
string s[];
public:
obj(){
s = {"bla", "blaaa", "..."};
}
};
but, it wont compile ... please help