cpp
9/18/2018 - 4:40 PM

03 = c[2][0]='R"

    {
        string * c = new string[3];//(1)
        c[2][0] = 'R';
        delete[] c;
        
        // can't think of any other way this would work.
        
        {

            char * c [3];
            c[0] = new char[1];
            c[2][0]='R';
            // delete [] c;  // this doesn't work
        }
        
    }