Answers for "how to declare an array"

32

how to create an array in java

int[] array1 = new int[5]; //int array length 5
String[] array2 = new String[5] //String array length 5
double[] array3 = new double[5] // Double array length 5
Posted by: Guest on January-28-2020
27

creating array java

int[] intArray = new int[]{ 1,2,3,4,5,6,7,8,9,10 }
Posted by: Guest on November-30-2019
12

java int array

int[] theNumbers = new int[5];

arr[0] = 4;
arr[1] = 8;
arr[2] = 15;
arr[3] = 16;
arr[4] = 23;
arr[5] = 42;
Posted by: Guest on February-18-2020
2

create n number of arrray in c

int n,i;

//enter n

int **array = malloc(sizeof(int*)*n);

for(i=0;i<n;i++)
  array[i] = malloc(sizeof(int)*64);

 /* Do Stuffs*/


/* Free Memory */  
for(i=0;i<n;i++)
  free(array[i]);

free(array);
Posted by: Guest on June-08-2020
4

how to declare an array in javascript

var array = [item1, item2, .....];
/*

  item1 and item2 could be a string (which is 
  a letter written in double or single quotes like this "string" or 'string') or 
  a number (which is just a normal number on the keypad) or a boolean (which is 
  an experssion which either returns to true of false) and the ..... means that 
  the inputs can be infinite.
  
*/
Posted by: Guest on July-23-2021
0

how to declare an array

redim Friday(NumFRdays)
Posted by: Guest on March-17-2020

Code answers related to "how to declare an array"

Code answers related to "Javascript"

Browse Popular Code Answers by Language