#include <iostream>
using namespace std;

const char *arr[] = {
  "xyz",
  "abc",
  "pqr",
  NULL
};

int main() {
    arr[1] = "ghi";
	return 0;
}