answersLogoWhite

0

i don;t know, can u help

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is squre array?

A square array is an array in which the number of rows is the same as the number of columns.


What is the minimum number of swaps required to sort an array?

The minimum number of swaps required to sort an array is equal to the number of inversions in the array.


What is The number of elements in an array is called?

the length of the array


This array field holds the number of elements that the array has?

length


What is square array?

It is an array with the same number of rows and columns.


Can a prime number be made into an array?

Yes, a unit array.


What is an associative array?

An associative array is one of a number of array-like data structures where the indices are not limited to integers.


What is flat model database?

in which is a two dimensional array of data


How do you do the area array model?

dhfjopdpyp;pg[;ep;ep;


How can I get the size of an array in C?

To get the size of an array in C, you can use the sizeof() operator. This operator returns the number of bytes occupied by the array, so to get the number of elements in the array, you can divide the total size by the size of one element.


What is the process to find the median of an array of numbers?

To find the median of an array of numbers, first, arrange the numbers in ascending order. If the array has an odd number of elements, the median is the middle number. If the array has an even number of elements, the median is the average of the two middle numbers.


How can I get the number of elements in an array in C?

Ah, honey, in C, you can get the number of elements in an array by dividing the total size of the array by the size of one element. So, if you have an array of integers, you can do something like int size = sizeof(array) / sizeof(array[0]); and voilà, you've got the number of elements. Just be careful with those pesky pointers and make sure you're not trying to count elements in a pointer instead of an actual array.