testing error response 02

Bjarne Stroustrup “Programming Principles and Practice Using C++”
Chapter 5 Try This page 139
Using std_lib_facilities.h by Bjarne Stroustrup.

[code language=”cpp”]
// Philipp Siedler
// Bjarne Stroustrup’s PP
// Chapter 5 Try This page 139

#include "std_lib_facilities.h"

int area(int length, int width) {
return length * width;
}

int main()
try
{
//int x0 = arena(7);
//int x1 = area(7);
//int x2 = area("seven",2);
keep_window_open();
}

catch (exception& e) {
cerr << "error: " << e.what() << ‘\n’;
keep_window_open();
return 1;
}

catch (…) {
cerr << "Unknown exception!\n";
keep_window_open();
return 2;
}
[/code]

Newsletter Updates

Enter your email address below to subscribe to our newsletter

Leave a Reply

Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124