what is array?
Answers were Sorted based on User's Feedback
Answer / mr rafiq ahmad dar
an array is a fixed size sequenced collection of elements of same data type
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / abir maiti
An array is a linear data structure of homogeneous elements.
Homogeneous means, every element will be of same data type,
may of int type or of float type or of char type. Any array
will be stored in consecutive memory locations. Array
elements are accessed using index starting from 0. Array can
be one or multidimensional.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / mubarak khowaja
array is the collection of similer data type,
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / joel
array the method of storing multiple data on the same drive
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / virender kumar
An array is a collection of similar data type, that can store the value of an object.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / bhavinsin darbar &bhavik g
array is collection of element which is having to same data
type
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / dilip
Array is a collection of number of element and collection
of data type
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / shubham
In short we can say that
Array is a single variable in
which multiple values of
same type can be stored.
Elements of Array share
single name.
Eg: int a[2];
here a is a variable in which
two elements of type int are
stored.
http://
studytipsandtricks.blogspot.in
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / prasad rokkam
An array is a collection of elements or group of elements, which belongs to same datatype.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between CV and Resume ?
hi... can anyone help me to make a two-dimensinal arrays in finding the sum of two elements plzzz. thnx a lot...
Are the variables argc and argv are local to main?
What is the use of a semicolon (;) at the end of every program statement?
What is file in c language?
difference between the array and linked list general difference related to memory
how to set Nth bit of variable by using MACRO
Why do we use return in c?
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.
whats the use of header file in c?
What is static volatile in c?
There is a number and when the last digit is moved to its first position the resultant number will be 50% higher than the original number.Find the number?