In main.cpp I must print my char array like this:
const char *str(CValue::TestStringValue0());
cout << ' ' << *str << endl; //must not change
I can't modify this! So I need to print my array of char, but nor first value of array.
TestStringValue look like this..
static const char* TestStringValue0() {...}
TestStringValue0()? Instead of returning e.g.stryou would returnstr+1CValue::TestStringValue0look like? And what is your question?