C++ program to check the element in the ARRAY
#include <iostream>
using namespace std;
void findElement(int*p,int size1,int x1){
for (int i=0;i<size1;i++){
if (p[i]==x1){
cout<<"Voilla!, We found it at index "<<i<<endl;
return;
}
}
cout<<"Sorr...
vishektoor.hashnode.dev1 min read