I just got Bloodshed Dev-C++, and I'm having a couple of problems, I write the code and get no errors, but when I execute the file, nothing happens...

Here is the code:

Code:
#include <iostream>
#include <conio.h>
using namespace std;

int main()
{
    cout << "I like pants!" << endl;
    getch();
    return 0;
}
So any advice, suggestions, comments?