I just started using DevC++ (ty Ancient Dragon) to learn C/C++. I am starting with the basic Hello World! The online tutorial I am following (which seems pretty good to me, but what do I know...yet) does not express how to check my work.
I remember seeing a C tutorial that had an example of how to keep the DOS? window open to see if the code you are writing is correct. Do I even need to keep it open. Right now, all
I am getting is the flashing window.
I have written the code as follows...
//my first c++ program
#include <iostream>
using namespace std;
int main ()
{
cout <<"Hello World!";
return 0;
}
I then click the "compile and run" button.
Thank you for any direction...