how to add values to an array code example
Example 1: how to insert an element from an array
int main()
{
int array[100], position, c, n, value;
printf("Enter number of elements in array\n");
scanf("%d", &n);
printf("Enter %d elements\n", n);
for (c = 0; c < n; c++)
scanf("%d", &array[c]);
printf("Enter the location where you wish to insert an element\n");
scanf("%d", &position);
printf("Enter the value to insert\n");
scanf("%d", &value);
for (c = n - 1; c >= position - 1; c--)
array[c+1] = array[c];
array[position-1] = value;
printf("Resultant array is\n");
for (c = 0; c <= n; c++)
printf("%d\n", array[c]);
return 0;
}
Example 2: java add element to existing array
String[] rgb = new String[] {"red", "green"};
String[] rgb2 = new String[rgb.length + 1];
System.arraycopy(rgb, 0, rgb2, 0, rgb.length);
rgb2[rgb.length] = "blue";
rgb = rgb2;
Example 3: how to add objects in array java
car redCar = new Car("Red");
car Garage [] = new Car [100];
Garage[0] = redCar;
Example 4: how to add to an array js
var colors = ["blue", "red"];
colors.push("black")