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!
Results 1 to 2 of 2
Thread: Hellllpp
- 10 Mar. 2010 03:15pm #1
Hellllpp
LG's Dyke. Enough. Said.
- 10 Mar. 2010 10:48pm #2
#include <iostream>
should be
#include <iostream.h>
I think.