I havent programmed in C++ for about 3 years.. Since i started uni actually.. Now i gotta implement some stuff for Algorithms and Complexity.. I've got a vague idea of how to do that but thats not my problem.. According to my memory and old programs that i dug up for my hard disk the following code should not be wrong.. But it is.. At the moment im working on Windows XP with Microsoft Visual Studio 2008.. I've tried various versions of the std thingy like
std::cout << "sfsd";
using namespace std;
include "stdafx.h"
but nothing works.. Heres the first program i did on c++ which now isnt working :p
#include <iostream.h>
#include <conio.h>
#include "stdafx.h"
int main()
{
cout << "Hello World /n";
return 0;
}