I'm trying that out, to see f I can use that instead of code::blocks, and I get this error when I try and compile simple "Hello world!"
"Add directive to 'StdAfx.h' or rebuild precompiled header"
So, heres my code
1 2 3 4 5 6 7 8 9 10 11 12 13
// Porject 1.cpp : Defines the entry point for the console application.
//
#include <iostream>
#include "StdAfx.h"
usingnamespace std;
int main()
{
cout << "Hello World!";
return 0;
}