Ok, you Visual Studio people out there probably will laugh at this... but o well...

Here is some simple code that works fine...its just that when it reaches return 0; it displays "Press a key to continue..." and I don't have system("Pause") anywhere in my code...

Code:
int main()
{
    Menu();
    cout<<"\n\t\t\t       Quitting";
    Sleep(500);
    cout<<".";
    Sleep(500);
    cout<<".";
    Sleep(500);
    cout<<".";
    return 0;
}
Are there any settings I should be aware of to disable the automatic system("Pause") thing thats goin on here?