Hello! My source code in Visual C++ Express 2008 is as follows :
#include “stdafx.h”
#include <iostream>
int _tmain(int argc, _TCHAR* argv[])
{
std::cout << “Hello world!\n”;
return 0;
}
I'm using the book, Visual C++ 2008,by Ivor Horton
.These are the errors that I'm encountering.How do I get rid of the errors ?
1>e:\my documents\visual studio 2008\projects\hello\hello\hello.cpp(1) : error C2006: '#include' : expected a filename, found 'identifier'
1>e:\my documents\visual studio 2008\projects\hello\hello\hello.cpp(1) : fatal error C1083: Cannot open include file: '': No such file or directory
Thanks!