Computer Science, asked by neethus664, 1 year ago

What is an Array? Explain representation of array with example.

Answers

Answered by don762
3

An array is a structure or special variable that stores more than one similar type of data with a common name but having different subscript or index numbers.

For example,

If a name of array is A, the first element of the array is reffered as A (1), the second as A (2) and so on.

Answered by rishirajsharma197
0

Arrays in C programming with examples. An array is a group (or collection) of same data types. For example an int array holds the elements of int types while a float array holds the elements of float types.

Similar questions