Q:

Write C program to find reverse of an array

0

Write C program to find reverse of an array

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

#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:

Enter size of the array: 10

Enter element of array: 10

20

30

40

50

60

70

80

90

100

Array in reverse order: 100       90      80     70     60     50     40     30     20     10

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Write C program to left rotate an array... >>
<< Write C program to put even and odd elements of ar...