I am trying to experiment with character Methods and get a the error message that "char cannot be dereferenced".
Here is the code:
String s1 = args[0] ;
char c = s1.charAt( 0 ) ;
char c2 = c.charValue() ;
The error is in the last statement. What am I missing?
Thanks