The try/catch of last resort in the runtime that called your main will catch it, and just kill your program.

In effect, there is something like this where your main is called.
Code:
try 
{
    int r = main(argc,argv);
} 
catch (const std::exception& e) 
{
}