Question: std::string throws an out_of_range exception when it is asked to use a bad index. Modify the existing code so that it catches any exception that
std::string throws an out_of_range exception when it is asked to use a bad index. Modify the existing code so that it catches any exception that occurs and prints "Oooops".
#include
using namespace std;
int main() {
string word = "hello"; int index; cin >> index; cout << word.at(index);
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
