//: FunctionTryBlock.cpp #include using namespace std; int main() try { throw "Howdy"; } catch(char* e) { cout << e << endl; }