I currently have a char array
char [] firstArray = {'1', 'a', 'c', '4', 'q'};
I want to implicitly self-cast this array to a int one. I mean not to create a new int array and to try to assign him the index's values of this one, but to change this array to an int array.