i don't know how to fix this error can any one help me
here's my code:
StringStack::StringStack(string value)
{
stackArray = new string[value];
stackVal = value;
top = -1;
}
and the erro says:
error C2440: 'initializing;: cannot convert from 'std::string; to size_t'
what does this mean
and another error is:
error C2440: '=':cannot convert fro 'std::string' to 'int'
If anyone knows how to fix this please help
thank in advance,
Rodolfo Gracia