I have created an applet that reads text strings, processes events and performs writing/drawing operations.
But I have to make it so the applet places the input string into a character array. The array must be the same size as the input string, and every character in the input string will be stored sequentially in the array. For example, for the string "Hello", you would create a character array of length five, where array element zero would be 'H', array element 1 would be 'e', etc.;
Can anyone help me do the above?