Question: int main ( ) { try { divideByFive ( 3 ) ; } catch ( / ## HERE ## / ) { cout < <

int main(){
try{ divideByFive(3); }
catch(/## HERE ##/){
cout << message << endl;
}
}
int divideByFive(int num){
if (num <5){
throw "ERROR: number too small";
} else { return num/5; }
}
Consider the missing code marked by the comment /*## HERE ##*/.What should it be?
Group of answer choices
string message
char *message
Exception message
"ERROR: Number too small"
NULL

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 Programming Questions!