LinkedList<char> PC=new LinkedList<char>();
getting this error message when tried to run.
Solution.java:5: error: unexpected type
LinkedList<char> PC=new LinkedList<char>();
^
required: reference
found: char
Can anyone explain why we can create the link list of arrays, object, and string but not of character?