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 #include #include #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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!