I want to create a character array like this one below: character array
i am unable to find a method . Please help me out. Beginner in java
I want to create a character array like this one below: character array
i am unable to find a method . Please help me out. Beginner in java
char[][] x = new char[][]{};
x[0][1] = 'c';
...