+ 6

What is an Array?

Guys I want a brief description on "Arrays"

14th Aug 2017, 4:10 AM
Gautam Saxena
Gautam Saxena - avatar
3 Answers
+ 4
its simply a collection of values/elements stored to a variable of the same type single array int a[] = {1,2,3}; "int" = datatype "[]" = indication of an array "a" = variable { start of array 1,2,3 = element's } end of array ; next
14th Aug 2017, 9:46 AM
D_Stark
D_Stark - avatar
+ 6
Ask Google first ! according to Google: An array is a data structure, which can store a fixed-size collection of elements of the same data type. An array is used to store a collection of data, but it is often more useful to think of an array as a collection of variables of the same type.
14th Aug 2017, 4:23 AM
Jetset Willy
Jetset Willy - avatar
+ 2
collection of similar data type is called array ............like into ,float,char
16th Sep 2017, 3:29 AM
Vipin Singh Negi
Vipin Singh Negi - avatar