write a program to print reverse order of array



Write a program to reverse a order of array







STUDY EVERTHING





#include <stdio.h>
#include <conio.h>
int main(){
    int i;
 int arr[9] = {345456326789903221};
 for(i=8; i>=0; i--)
 
   printf("%d\n"arr[i]);
   return 0;

}





output = 21, 32, 90, 89, 67, 32, 56, 54, 34



Post a Comment

If you have furthur QUERIES please let us know

Previous Post Next Post