#include <iostream>
#include <vector>
using std::vector;
using std::cout;
using std::endl;
int main()
{
vector<int> vec = { 1, 3, 8, 23, 88, 12, 99, 7 };
auto pos = std::find(vec.begin(), vec.end(), 88);
if (pos != vec.end()) {
cout << "found in index: " << std::distance(vec.begin(), pos) << endl;
}
else {
cout << "not found" << endl;
}
}
/*
run:
found in index: 4
*/