-
VisualC++ Tutorial
I'm a programmer in VisualBasic and I just got Microsoft VisualStudio 6 and I want to learn about C++. I went to cplusplus.com for there tutorial and, most of the libraries aren't included with VC++. Is there is another site where I can find a tutorial for MS VC++?
Thanks,.
-
Which libraries are you talking about that aren't included with VC++?
Learn C++ not VC++. See the FAQ for sites with tutorials and books.
-
-
iostream.h is definitely there in mine. Although you should really use <iostream> ;)
-
There may be something wrong with your VC++ installation. iostream.h is in the VC++ Include directory.
-
#include <iostream.h> would work as well ;)
-
fatal error C1010: unexpected end of file while looking for precompiled header directive
-
Make sure that your include and lib libraries are correct.
Check them at Tools -> Options -> Directories
-
What project type are you using? Try turning off precompiled headers in Project Settings.