Hi There
I used to develop C programming some 5 years back using Visual Studio. Now I am on my way to develop C++ using Visual Studio .Net 2003.
I started of to create new project, there are numbers of different type to choose (Win32 Console Project, Console Application (.Net), Windows Forms Application (.Net)). So, I just tried eash of them. Then I tried out this code:
#include <iostream>
using namespace std;
int main()
{
cout<<"HEY, you, I'm alive! Oh, and Hello World!\n";
cin.get();
}
Somehow, none of those project recognize the code, I get this error.
d:\C Language\First In C\Win32\Win32.cpp(13): fatal error C1010: unexpected end of file while looking for precompiled header directive
Maybe I shd get clear each of those project. Anyone can provide me some guide would be much appreciated.
Thanks.