I have a small unsorted array and I’d like to find the index of a particular value. Does C++ have a built-in sequential search function for this, or do you just write the loop yourself each time it comes up?
I’m specifically using a C-style array like:
std::string arr[5] = { 'EVEN', 'ODD', 'NONE', 'MARK', 'SPACE' };
and I need the index of a value that the user supplies.
std::find()should work: