answersLogoWhite

0

Why you use array in c language?

Updated: 8/11/2023
User Avatar

Wiki User

14y ago

Best Answer

The idea of an array is to store data for different related items, using a single variable name. The different items are distinguished by a subscript (a number, which may also be a variable or some other expression)

For example, if you want to track scores for four different players in a computer game, you could create an array for those scores.

The idea of an array is to store data for different related items, using a single variable name. The different items are distinguished by a subscript (a number, which may also be a variable or some other expression)

For example, if you want to track scores for four different players in a computer game, you could create an array for those scores.

The idea of an array is to store data for different related items, using a single variable name. The different items are distinguished by a subscript (a number, which may also be a variable or some other expression)

For example, if you want to track scores for four different players in a computer game, you could create an array for those scores.

The idea of an array is to store data for different related items, using a single variable name. The different items are distinguished by a subscript (a number, which may also be a variable or some other expression)

For example, if you want to track scores for four different players in a computer game, you could create an array for those scores.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

14y ago

We use arrays in C to represent more than one copy of a particular object. They allow you to manipulate the entire set using one base name and an index to a particular element.

If you wrote a program to calculate the mean of a set of observations, for instance, you would not create an object for each observation - you would create an array.

double obs[10]; /* array of ten observations, named obs[0] through obs[9] */

double sum; /* temporary variable to hold the sum to calculate the mean */

double mean; /* variable to hold the mean */

int i; /* temporary variable to hold an index to scan the array */

... /* do some work to load values into obs[0] through obs[9]

sum = 0.; /* initialize the sum */

for (i=0; i<10; i++) { /*loop over each element */

sum += obs[i]; /* sum the observations */

}

mean = sum / 10; /* calculate the mean */

This answer is:
User Avatar

User Avatar

Wiki User

14y ago

The idea of an array is to store data for different related items, using a single variable name. The different items are distinguished by a subscript (a number, which may also be a variable or some other expression)

For example, if you want to track scores for four different players in a computer game, you could create an array for those scores.

This answer is:
User Avatar

User Avatar

Wiki User

13y ago

Storing data.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why you use array in c language?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

How do you use in array?

cod a program student degree array in c language


How do you write a programme in c language using arrays to copy diagonal elements of a 2-d array into a 1-d array?

TO use a c language first step is to know about the c language and the steps to use the c progrmming language with the help of any elders or with the teachers. TO use the arrays you have to get th eknowledge of "c" language


How do you use in?

cod a program student degree array in c language


How you create table in c language?

The simplest way to create a table in C is to use a two-dimensional array.


How many dimensions can an array be created in c?

There is no language limit to "How many dimensions can an array be created in c?". The limit will depend on available memory.


What is the Maximum limit of array size in c language?

Platform-dependent.


What is the difference between array in c and c sharp language?

The syntax to access a particular element in an array are the same in both languages: For example: assume array is an array of 10 int(egers): to get the first element: array[0] (both are 0 based indexing] int i = 0; while (i &lt; array.Length) { // do something to array[i] } int i = 0; int length = sizeof(array) / sizeof(int); while (i &lt; length) { // do something to array[i] } However, an array in C# is also enumerable (C does not have this feature) in C#, you may loop thru the array by: foreach (int number in array) { // do something to array[i] } Plus, C# is an Object-Oriented Language, so that an array may be of some object types, not just those primitiives data types in C: object[] objectArray; // any object derived from Object may be placed into objectArray, not just struct. In another variation, an array may be of Delegate type in C#(sort of like function pointers in C)


How do you swap two adjecent no in array in c?

Option 1) Use a temporary variable: int x = array[i]; array[i] = array[i+1]; array[i+1] = x; Option 2) Use bit operators: array[i] ^= array[i+1] ^= array[i];


What is meant by array with in structure in c language?

It means a structure has a member that is an array: typedef struct foo { int x[42]; // an array of 42 integers // other members... };


Why is c string defined as an array?

Every programming language treats strings as arrays. A C string is defined as being a null-terminated array of characters. A C string that does not have a null-terminator is just an array of character values, but without a null-terminator the onus is upon the programmer to keep track of the array's length.


How do you use an array to show the commutative property?

If the array consists of r rows and c column, and the total number of cells in the array are n = r*c, then r*c = n and c*r = n so that r*c = c*r : which is commutativity of multiplication.


Why you use array in c sharp programming?

Any feature in any computer language should be based on the need. In the last 2 years, I have not come across any need to use an array in my job. Yes, I do use collections, a lot of them, just never a fixed-size collection.