int LinearSearch(int [], int, int);
int mian()
{
int n;
int A[100];
cout << "Enter size of array : ";
cin >> n;
for ( int i = 0 ; i < n ; i++ )
{
cout << "number " << i + 1 << " is : ";
cin >> A[i];
}
int item, location;
cout << "Enter the item you are searching for: ";
cin >>...