#include <iostream>
#include <cassert>
#include <vector>
#include <algorithm> // For find
using namespace std;
int main()
{
char x[5] = {'a', 'b', 'c', 'd', 'f'};
vector<char> vector1(&x[0], &x[5]);
// Search for the first occurrence
vector<char>::iterator where = find(vector1.begin(), vector1.end(), 'b');
cout << *where << endl;
return 0;
}
/*
b
*/
|