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>
usingnamespace 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;
}