Hello,
I've been using Code Blocks as an IDE for a while and decided to switch to VS2010 Professional as I had obtained it throuh Dreamspark. Anyway, I'm terribly confused at the files it gives me for a standard Win32 Console App for C++. Usually, I'm used to seeing:
#include <iostream>
using namespace std;
int main() {
return 0;
}
But in VS, when I load up a basic project, I see this:
#include "stdafx.h"
int _tmain(int argc, _TCHAR* argv[])
{
return 0;
}
I have no idea what's going on! Also, it has given me two header files "stdafx.h" and "targetver.h", as well as two source files "projectname.cpp" and "stdafx.cpp". Normally, I'm used to seeing only one of each or only the source file, so yeah, I don't exaclty know where to start, any help would be much appreciated!
Thanks!
Carpetfizz