having an array:
char* arr[some_size] = {nullptr};
and later initializing some of its elem's is there any way that I can reset this array in other way than iterate over its elements and set them to nullptr?
I would like to avoid this:
for(unsigned i = 0; i < some_size;++i)
{
arr[i] = nullptr;
}