Write a statement that declares an array named streetAddress that contains exactly eighty elements of type char.
Language: Java
Challenge:
Write a statement that declares an array named streetAddress that contains exactly eighty elements of type char.
SOLUTION:
Language: Java
Challenge:
Write a statement that declares an array named streetAddress that contains exactly eighty elements of type char.
Solution:
char[] streetAddress = new char [80];
Posted in Java, Learn To Code