Back To Java Arrays Index
//program to input a character array from the user and find its length public class arraylength { public static void main(String[] args) { int []marks={88,89,90,78,77}; System.out.println("length of array is " + marks.length); } }