Team Topic Nest

About Author

1090

Articles Published
C and C++

Write a program to insert an element into an array...

#include<iostream.h> #include<iomanip.h> class insertion { private: int n, m[100], ele, p; public: void getdata(); void insert(); void display(); }; void insertion::getdata() { cout<<"How many elements?"; cin>>n; cout<<"Enter the elements: "; for(int i=0; i<n; i++) cin>>m[i]; cout<<"Enter the element to be inserted:";...
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;...