answersLogoWhite

0


Best Answer

Elements of the array.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are Array variables also called as?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Why object array called universal array?

Object array is called universal array because it can store multiple variables of the same type


What is the need of array variables?

congugative memory allocation ,is use to array


Simple non-array variables are usually passed to methods by?

Simple non-array variables are usually passed to methods by value.


How many structure variables of a given type can you use in a C program?

You can use unlimited number of variables for a structure and you can also declare array of structures.


Full defecation of array?

Full representation of an array begins from the index 0 and ends at n-1 where n is the number of variables of the array.


What is a FIFO array?

It means that elements are fetched from the array in the same order they arrive - first in, first out (FIFO). Also called a queue.It means that elements are fetched from the array in the same order they arrive - first in, first out (FIFO). Also called a queue.It means that elements are fetched from the array in the same order they arrive - first in, first out (FIFO). Also called a queue.It means that elements are fetched from the array in the same order they arrive - first in, first out (FIFO). Also called a queue.


What is array indexing?

Unlike ordinary variables, the variables within an array do not have any names; they are anonymous. To access them you need to use memory offsets from the start of the array. Since the elements of an array are all the same type they are also the same length, thus the offsets are equal to the length of the array type. However, there is no need to calculate the offsets because each element's offset has a zero-based index. Thus the second element can be found at offset index 1.


When an array is declared does c automatically initializes its elements to zero?

For global/static variables: yes.For auto variables: no.


Can you give an example of array using character variable in c program?

the example of array over charcter variables is char ["string"]


What is a range of cells containing values for variables used in formulas in Excel?

It can simply be a range. It could also be an array. It will depend on the formula itself.


What is another name for independent variable?

independent variable called also predictor variables,explanatory variables,manipulated variables etc.


How do you append post variable in an array in php?

The $_POST variable is an array already, so if you want to append it to another array, you can use the array_merge function to do so. For example:$foo = array('alpha', 'bravo', 'charlie');$bar = array_merge($foo, $_POST);If there were two variables posted, one called "blah" with a value of 7 and one called "snarf" with a value of "snoo", then the $bar array would now be:Array(0 => 'alpha',1 => 'bravo',2 => 'charlie','blah' => 7,'snarf' => 'snoo')