Skip to content

Instantly share code, notes, and snippets.

@mounicasrinivas
Last active December 19, 2023 14:59
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/4ef4e7fedc713253e82e38c4dd753c6b to your computer and use it in GitHub Desktop.
Save mounicasrinivas/4ef4e7fedc713253e82e38c4dd753c6b to your computer and use it in GitHub Desktop.
Dynamic Initialization an Array
int[] myArray = new int[5];
myArray[0] = 1;
myArray[1] = 2;
// ... and so on
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment