Jump to

v07-l2-findOutput3

What does the following code produce ?

#include <iostream>
using std::cout, std::endl;

void function(){
    throw;
}

int main() {
    function();
    try {
        function();
    } catch (...) {
        cout << "Exception !" << endl;
    }
}

???