A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

Hellllpp

546 views · started by ksrocks333 ·
#1
Hellllpp
Ok I get Visual C++ thing from microsoft, and I can get a program to build.


I type
#include <iostream>

int main ()
{
cout<< "test" <<endl;
return 0;
}

and it says I forgot to use: #include "stdafx.h"
So I put it in, then it doesn't recognize any commands! Help!
#2
#include <iostream>
should be
#include <iostream.h>

I think.