An array is a variable name that can store several values, not just one. Each element is accessed through the variable name, combined with a subscript - a number used to distinguish the elements in the array.
Basically you usually would do each of the following:
A program which is used to count the number of numbers in an array using a 8085 microprocessor is known as a assembly language program.
system.exit o
To write a C++ program to display the student details using class and array of object.
the example of array over charcter variables is char ["string"]
sorry
If you are using an array : sort using qsort() then take middle element.
assembly language program for sorting an array using 8086 microprocessor.
public static int[] reverseArray(int[] array) { int i = 0, j = array.length - 1; for (i = 0; i < array.length / 2; i++, j--) { int temp = array[i]; array[i] = array[j]; array[j] = temp; } return array; }
plz as soon as possible give me the program for shorting an array in asscending order without using any sort function in c++
/* PROGRAM TO SORT ARRAY ELEMENTS USING BUBBLE SORT*/ #include #include void main() { int i,j,n,t,a[50]; clrscr(); printf("ENTER THE ARRAY SIZE:\n"); scanf("%d",&n); printf("ENTER THE ARRAY ELEMENTS:\n"); for(i=0;i
write an assembly language program to find sum of N numbers
i want to write a simple without using pointer or array c program which will print greatest number when i give 20 number .........How far have you gotten so far?