#include<conio.h>#include<iostream.h>#include<stdio.h>class List{public: // Array of integers to hold values int arr[20]; // Number of elements in array int n; // Function to accept array elements void read() { while (1) { cout<<"\nEnter the number of elements in the array: "; cin>>n; if (n <= 20) break; else cout << "\nArray can have maximum 20 elements\n"; } //Display the header cout<<"\n"; cout<< "-----------------------\n"; cout<< "Enter array elements...