Hi all,
in a piece of code like this:
void Logger::logMsg( int msgLevel,const char* msg)
{
char input[strlen(msg)];
...
}
is the input array dynamically allocated?
In this case, do I have to use the delete [] in order not to have a memory leak?
thank you!