PROGRAM TO TRAVERSING OF ARRAY
//TRAVERSING OF ARRAY// #include<stdio.h> #include<conio.h> void main() { int n,i,k,LB,UB,A[10]; clrscr(); printf(“Enter the total number of elements of array:”); scanf(“%d”,&n); printf(“Enter the elements in the array:\n”); for(i=1;i<=n;i++) { printf(“Element number …