Skip to content

Instantly share code, notes, and snippets.

@mounicasrinivas
Created December 19, 2023 17:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mounicasrinivas/f8e6b0a4c7f0d8e521ce8eaea8ca4772 to your computer and use it in GitHub Desktop.
Save mounicasrinivas/f8e6b0a4c7f0d8e521ce8eaea8ca4772 to your computer and use it in GitHub Desktop.
Determining Array Length
int[] myArray = {10, 20, 30, 40, 50};
int arrayLength = myArray.length;
System.out.println("The length of the array is: " + arrayLength);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment