#include <iostream>
 
using namespace std;
 
int main()
{
    const char* first[] = { "g", "kuchbhikarlobhai" };
 
    cout << "Address 0 =>" << &first[0] << endl;
    cout << "Address 1 =>" << &first[1] << endl;
 
    auto* second = &first;
 
    if(true) 
    {
        const std::string temp1 = "idontknowwhatisa";
        const std::string temp2 = "slfjdslfkjdsf5fb";
 
        if(true) {
          (*second)[0] = temp1.c_str();
          (*second)[1] = "slfjdslfkjdsf5fb";
        }
    }
    for (const auto& third : *second) {
        cout << "HI: " << third << endl;
    }
 
    return 0;
}