I can not figgure out what I did wrong

help would be appreciated. I get an output of:

Hello world
This is a program
Process returned 0 (0x0) execution time : 0.006 s
Press any key to continue

So the above is missing the line between "Hello world" and "This is a program" and the third line is completely missing

1
2
3
4
5
6
7
8
9
10
11
12
13
#include <iostream>

using namespace std;

int main()
{
    cout << "Hello world \n\n";
    cout << "This is a program \n";
    cout << "I want to see if this will work";

    return 0;
}
Did you rebuild your project or just running old executable?
There is nothing wrong with the code: http://ideone.com/mRjNUH
Thanks, the instruction video did not show that. :)
Topic archived. No new replies allowed.