Jump to content

Creating an Array: Difference between revisions

Line 126:
==[[Java]]==
 
For example for an array of 10 int values:
int[] intArray = new int[10];
 
Creating an array of Strings:
 
String[] s = {"hello" , "World" };
 
==[[C]]==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.