Tagged Questions
4
votes
4answers
580 views
Returning c_str from a function
This is from a small library that I found online:
const char* GetHandStateBrief(const PostFlopState* state)
{
static std::ostringstream out;
... rest of the function ...
return ...
1
vote
5answers
648 views
Can I increase the size of a statically allocated array?
I know its possible to increase the size of a dynamically allocated array.
But can I increase the size of a statically allocated array?
If yes,how?
EDIT: Though this question is intended for C ...