answersLogoWhite

0

What is an array in c program?

User Avatar

Anonymous

7y ago
Updated: 9/7/2021

A type construction: one or more values with the same type and name.

User Avatar

Arely Tromp

Lvl 10
3y ago

What else can I help you with?

Related Questions

C program for storage representation of 2-D array?

Wright a 'C' program for storage representation of 2-D array.


How do you use in array?

cod a program student degree array in c language


How do you use in?

cod a program student degree array in c language


How do you write a C Program to fill up an Integer Array?

Reference:cprogramming-bd.com/c_page1.aspx# array programming


Can you give an example of array using character variable in c program?

the example of array over charcter variables is char ["string"]


What is the base address of an array in c program?

the address of variable (pointer) that contains array


Array implementation of priority queue example program in c plus plus?

yes


How do you write a program in C to find and display the sum of each row and column of a 2 dimensional array of type float?

array type


Write a c program to find the maximum value of 25 element in an array?

int findMax(int *array) { int max = array[0]; for(int i = 1; i < array.length(); i++) { if(array[i] > max) max = array[i] } return max; }


How do you write a program to read set of numbers using by an array and display the ascending order of the given input numbers?

To write a C++ program to display the student details using class and array of object.


Write a c program to find the maximum of two numbers and print out with its position?

maxValue = function (array) {mxm = array[0];for (i=0; i<array.length; i++) {if (array[i]>mxm) {mxm = array[i];}}return mxm;}; i don't know


Program in c to delete an element in sorted array?

You cannot delete elements from an array. But you can move the elements: if (del_index < no_of_elements-1) { memmove (&array [del_index], &array [del_index+1], sizeof (array [0]) * (no_of_elements - del_index - 1)); } --no_of_elements;