Site Owners Forums - Webmaster Forums

Site Owners Forums - Webmaster Forums (http://siteownersforums.com/index.php)
-   Programming General (http://siteownersforums.com/forumdisplay.php?f=44)
-   -   What is Array in C? (http://siteownersforums.com/showthread.php?t=179915)

StuartSpindlow1 11-03-2016 10:48 PM

What is Array in C?
 
Hello Friends,

Please tell me what is array in C.

Dubey675 11-22-2016 03:02 AM

Overview. An array is a collection of data items, all of the same type, accessed using a common name. A one-dimensional array is like a list; A two dimensional array is like a table; The C language places no limits on the number of dimensions in an array, though specific implementations may.

mspcarservice 12-07-2016 03:59 AM

Arrays in C act to store related data under a single variable name with an index, also known as a subscript.

kunalkumar 12-09-2016 12:47 AM

An array is a collection of data items, all of the same type, accessed using a common name. A one-dimensional array is like a list; A two dimensional array is like a table; The C language places no limits on the number of dimensions in an array, though specific implementations may.


Book Ad in Times of India | Newspaper Ad Agency in Delhi

simon606 12-14-2016 11:10 PM

This is called a single-dimensional array. The array Size must be an integer constant greater than zero and type can be any valid C data type. For example, to declare a 10-element array called balance of type double, use this statement

wiliamjamesh 12-18-2016 11:57 PM

An array is a collection of data items, all of the same type, accessed using a common name. A one-dimensional array is like a list; A two dimensional array is like a table; The C language places no limits on the number of dimensions in an array, though specific implementations may.

Viewporttech 12-22-2016 10:59 AM

Arrays a kind of data structure that can store a fixed-size sequential collection of elements of the same 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.

wiliamjamesh 01-10-2017 02:52 AM

An array is a collection of data items, all of the same type, accessed using a common name. A one-dimensional array is like a list; A two dimensional array is like a table; The C language places no limits on the number of dimensions in an array, though specific implementations may.

hemaweb 02-09-2017 03:12 AM

Thanks for sharing nice information...........

Avinash kumar 02-15-2017 12:02 PM

Array is type of data structure that can store a fixed size of sequential same type of data.

manavatmix 02-15-2017 11:06 PM

An array is a data structure that can hold multiple data values. For example [a,b,c,d]. Here it holds 4 values - a,b,c and d.

owenhallroh 02-28-2017 04:20 AM

It makes the code look more beautiful and organised with less variable used. Modification, searching, traversing of data becomes very easier with this.

_____
code analysis tools c#

pxljobs 03-14-2017 10:53 PM

This is an process of collection variables belongs to same data type you can store the same data type in the array.

sin123 03-14-2017 11:49 PM

Array is a collection of many values of similar data types.

SarbjitGrewal 03-15-2017 12:58 AM

An array is collection of data that stores same type of values that includes, integers, string, and characters etc.

sinGN 03-15-2017 02:27 AM

This is a collection of many values and those values has similar data types.

iammanisha 06-08-2017 12:45 AM

array is a collection of homogeneous data.

omkarsoft 06-09-2017 05:51 AM

Array is collection of same type of data elements

sin123 06-19-2017 04:57 AM

An array is a collection of data items, all of the same type, accessed using a common name.

BryceBrady 06-22-2017 05:39 AM

An array is a collection of data items, all of the same type, accessed using a common name. A one-dimensional array is like a list; A two dimensional array is like a table; The C language places no limits on the number of dimensions in an array.

adityadev 07-15-2017 04:29 AM

An array is a gathering of information things, the greater part of a similar sort, got to utilizing a typical name. A one-dimensional exhibit resembles a rundown; A two dimensional cluster resembles a table; The C language puts no restrictions on the quantity of measurements in a cluster, however particular executions may.

thevyakar 11-23-2017 06:28 AM

It is used to store multiple values of similar data types.

arthurperkins 12-08-2017 03:28 AM

An array is a collection of elements of the same data type which is also used to represent multiple data items of the same type by using an only single name.

Ryan David 12-08-2017 03:30 AM

Thanks for your useful information

valeriewalker 12-13-2017 12:24 AM

Thanks for the useful information.

ORLOVA 09-02-2019 10:55 PM

An array is defined as the collection of similar type of data items stored at contiguous memory locations. Arrays are the derived data type in C programming language which can store the primitive type of data such as int, char, double, float, etc. It also has the capability to store the collection of derived data types, such as pointers, structure, etc. The array is the simplest data structure where each data element can be randomly accessed by using its index number.

alvin_hoffman 10-03-2019 07:12 AM

An array is a collection of data items, all of the same type, accessed using a common name

Dev Tyagi 11-22-2019 12:36 AM

Thank you very much for sharing it.


All times are GMT -7. The time now is 06:39 PM.


Powered by vBulletin Copyright © 2020 vBulletin Solutions, Inc.