Tech Study

Write C program to find reverse of an array

Write C program to find reverse of an array

#include < stdio.h > #define MAX_SIZE 100 //Maximum size of array

int main() {
int array[MAX_SIZE];
int size, i;

  // Reading size of array
  printf("Enter size of the array: ");
  scanf("%d", & size);

  // Reading array elements
  printf("Enter elements in array: ");
    for (i = 0; i < size; i++) {
    scanf("%d", & array[i]);
  }

  //Print array in reversed order
  printf("\nArray in reverse order: ");
    for (i = size - 1; i >= 0; i--) {
    printf("%d\t", array[i]);
  }

    return 0;
}

Result

Write C program to find reverse of an array
Write C program to find reverse of an array

TaggedWrite C program to find reverse of an array

Java Final keyword

Introduction : java final keyword The final keyword present in Java programming language is generally used for restricting the user. …

Read more

C++ Memory Management: new and delete

C++ Memory Management We know that arrays store contiguous and the same type of memory blocks, so memory is allocated …

Read more