answersLogoWhite

0


Best Answer

An array refers to storing data on multiple devices. An example of this would be to be able to type in six things, call them an array, and not need an identifier for each one.

User Avatar

Wiki User

9y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Define an array and describe its purpose?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the demensions of an array?

The numbers that define its size:int x[12][24];


If an array shows a square number how many multiplication and division sentences can describe the array?

2


Define or describe each set of real numbers?

define or describe each set of real numbers?


What is the purpose of a Hot Spare in a RAID array?

Used to replace a failed drive in a redundant array.


What is expostitroy writing?

Expostitroy writing is known as a type of writing that is used for the purpose of informing, explainging, to describe, or define the authors subject to present these purposes.


Define and describe networking model?

describe net working


What is the purpose of AND array?

AND array is used for developing digital circuit it is used in PLA programmable logic array and PAL programmable array of logic to implement the function. the number of and array will depend on how long you has function to be implemented.These are Digital circuits.


What is the purpose of the bubble map?

to define


Define the declare statement for multi-dimension array?

<storage_class> <type> <identifer> '[ '<number1> ']' '[ '<number2> ']' ... ';'


Can object have array of characters?

If by an object you mean a class or a struct, yes they can. Define the char array like you normally would but don't intialize any data into it. Do this in the constructor


Define define without using the word define?

It explains the meaning of something. To define: To describe or outline the functional characteristics of a word or object.


Sample program of single-dimentional array?

#include "stdio.h" #define SIZE 100; void main() { int array[SIZE], i, size; printf("\nEnter the Size off Array :- "); scanf("%d", &size); printf("\nEnter the Elements of Array :- ")' for(i = 0; i < size; i++) scanf("%d", &array[i]; printf("\nThe Elements of entered Array :- "); for(i = 0; i < size; i++) printf("%7d", array[i]); }