Skip to content

Instantly share code, notes, and snippets.

@hamoungh
Created March 6, 2015 10:15
1)int[] a = {25, 30, 40, 5};
2)int[] a;
a = new int[4];
a[0] = 25;
a[1] = 30;
a[2] = 40;
a[3] = 5;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment