Ok I have an array but I need to get a char array and make it actually equal the name of the array and use it accordingly. For example.

int hello[3];

char nameofarray[]="hello";

I want it to make it so that I can call nameofarray by using something like:

nameofarry[]

Is there anyway to do something like this? I know its kinda far fetched but it would really help me out.