0
Array
How to make array for char
3 Respostas
+ 3
Some examples in Java (you seem to have started the Java course)
char[] letters = new char[3];
char[] letters2 = new char[] {'a', 'b', 'c'};
char[] letters3 = "abc".toCharArray();
+ 2
Just like you make for strings.
Replace the double quotes with single quote. For eg- "a" to 'a'
https://www.sololearn.com/learn/Java/2148/
+ 2
Please specify a language in your question tags. Unfortunately, 'help me' did not clarify the context of the question, in regards to languages involved : )