C and C++
Write a program to find the frequency of presence of...
#include<iostram.h> #include<iomanip.h> #include<conio.> class frequency{ private: int n, m[100], ele, freq; public: void getdata(); void findfreq(); void display(); }; void frequency::getdata(){ cout<<"Enter the size of the array: "; cin>>n; cout<<"Enter "<<n<<" elemens into the array: "; for(int i=0; i<n; i++) cin>>m[i]; cout<<"Enter the search element: "; cin>>ele;...