At the end of your example before the end of the return 0; put std::cin.get();
This will have the program wait for keyboard input from you before it is terminated.
So for example you have your Example.cpp file like this:
int main()
{
//blah blah
std::cin.get();
return 0;
}