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.


All times are GMT -7. The time now is 05:19 AM.


Powered by vBulletin Copyright © 2020 vBulletin Solutions, Inc.