MS studio 2008

CGfreak102

In Runtime
Messages
475
does anyone use it, i am having troubles making it run a simple program, just a plain win 32 one, that displays everything in command prompt. i make a win32 console application and enter in this code
Code:
#include<iostream.h>
#include<stdlib.h>

int main(void){

	cout<<"Hello"<<endl;

	return 0;

}


and i get this error
http://cid-8e190640e7770cf9.skydrive.live.com/self.aspx/Public/BuildLog.htm
just download the file, and open it in IE or firefox,

i dont know if i am doing something wrong or what
 
Hum...Is this for C++ Express 2008? I'm not quite sure as I had to uninstall it as soon as I installed it. Lol, lack of space. But if it is I can tell you, you can just use #include<iostream> You don't need stdlib. If it's not, then get either C++ Express 2008 or Bloodshed Dev C++. IMO, they are the best C++ environments.
 
yea, i used to used dev, but in my school i think we use the 2005 edition of studio or 2006, but maybe i can just get the install file from the teacher
 
Back
Top Bottom