Making an array element a reference to another variable

Glebun:
Hello. I have an array of strings. I need one of the elements to be always equal to another variable outside of the array. I've tried to do this with pointers, but have had no luck. Thanks in advance.

You could access the strings through a function that would access the outside variable as needed.

The "always be equal" part... you have to make that happen unless you use pointers and even then depending on what you mean, your code might have to "make equal".