what is an array
Answers were Sorted based on User's Feedback
Answer / hariharan,k
An Array is set of related data items that shares a common
name.
| Is This Answer Correct ? | 0 Yes | 0 No |
an array is a FIXED-SIZE sequenced collection of elements
of the same data type
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rameshwar nath show
array is nothing but an array(a set ) of constants of
similar data type .
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / aboelella
-Arrays are containers holding same data type
-Represented in memory as a sequence of elements
-Accessed through index of based zero
-It eleminates the need of defining variables with the
length of the array
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / saranya
array is a collection of homogeneous data that shares a
common name and stored in a sequence of memory.
Syntax:
<data_type> <variable_name>[<dimension_size>];
ex:
int arr[5];
Where,
int is an integer datatype,
arr[5] is a variable name with size 5.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nashiinformaticssolutions
A collection of items kept at consecutive memory regions is frequently referred to as an array.
The items that are kept are all of the same kind.
It arranges data in a way that makes it simple to search for or sort similar values.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
A collection of items kept at consecutive memory regions is frequently referred to as an array.
The items that are kept are all of the same kind.
It arranges data in a way that makes it simple to search for or sort similar values.
| Is This Answer Correct ? | 0 Yes | 0 No |
A collection of items kept at consecutive memory regions is frequently referred to as an array.
The items that are kept are all of the same kind.
It arranges data in a way that makes it simple to search for or sort similar values.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is a terminating character in c++?
Disadvantages of c++
Which of the following operator cannot be overloaded?
What is virtual base class uses?
Explain public, protected, private in c++?
What is the difference between struct and class?
Can constructor be static in c++?
Can we remove an element in a single linked list without traversing? Lets suppose the link list is like this 1 2 3 4 5 6 We need to remove 4 from this list (without traversing from beginning) and the final link list shud be 1 2 3 5 6 only thing we know is the pointer to element "4". How can we remove "4" and link "3" to "5"?
Will rust take over c++?
What are containers in c++?
Why can’t you call invariants() as the first line of your constructor?
give me an example for testing a program showing the test path .show how the test is important and complex.