Using a 2-dimensional array, display things in a manner below using a loop sctructure.
8 7 6
5 4 3
2 1 0
Answers
Answered by
0
Explanation:
#include<stdio.h>
int main()
{
int arr[10],i;
printf("Enter 10 Elements in Array=");
for(i=0;i<=9;i++)
scanf("%d",&arr[i]);
for(i=9;i>=0;i--)
printf("%d \n",arr[i]);
return 0;
}
PLEASE MARKS ME BRAINLIEST !!!!!
Similar questions