-2

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

  • 1
    Please read: [Why is “Can someone help me?” not an actual question?](https://meta.stackoverflow.com/questions/284236/why-is-can-someone-help-me-not-an-actual-question) – Turing85 Feb 01 '20 at 08:20

1 Answers1

-1
char[][] x = new char[][]{};
x[0][1] = 'c';

...

Eric Abramov
  • 462
  • 4
  • 19