I pretty much want clckNAM[HERE] to be the location of the found employee ID in the array empID.
while(mainMENU!=3)
{ if(mainMENU==1)
{ std::cout << "\nWelcome to the Clock-In menu, please enter your employee ID, or enter '0' to exit to menu.\n" << endl;
std::cin >> clockIn;
std::cin >> ID; //Enter ID to search
int found(0);
for( ; found < arrSize; ++found) //Searching
if (empID[found] == ID)
break;
//found now contains index od ID in empID or arrSize if not found