Okay, I started C++ and I put in:
I compiled it using Dev C++, and then I clicked Run. Nothing happens.Code:#include <iostream>
using namespace std; //introduces namespace std
int main( void )
{
cout << "this is a test" ;
return 0;
}
Does anyone know what could be wrong?
The <iostream> was there, I just added the correct HTML entities to make it visible.
- Sam