oobootsy1 : Why not just copy and past the code into this thread instead of using a zip file with a picture ?

Do this,
Code:
#include <iostream>

int main()
{
  std::cout << "Hello word" << std::endl;
  system("PAUSE");
  return 0;
}
or

Code:
#include <iostream>
using namespace std;

int main()
{
  cout << "hello world" << endl;
  system("PAUSE");
  return 0;
}