//Program starts
#include<iostream>
using namespace std;
int main()
{
int a,b,arr[a];
cout<<"How many indexes you wants to create : ";
cin>>a;
cout<<"Enter data in dissorted form "<<endl;
int m;
for(int y=0;y<=a-1;y++)
{
cin>>arr[y];
}
for(int...
John Johnson
“ First, solve the problem. Then, write the code. ”