msdn library

crackhead

Newbie
Joined
Nov 25, 2004
Messages
2,148
Reaction score
0
quick question, do i need to install the msdn library?
 
ok. i have just opened my c++ book and done the first task which surprise surprise is hello world so my code is this

Code:
#include <iostream>

int main()
{
	std::cout<< "Hello World!\n";
	return 0;
}

i dont know how to compile this. i dont have a build menu.
 
oh sorry nevermind, i hadnt realised i needed to create a new project.
 
The MSDN libraries are the instructions, basically.

-Angry Lawyer
 
oh right ok. im finding this really annoying i compiled the hello world script and debugged it and compiled it and ran it and it worked. then i edited the script to change the text and did the same and it came up saying hello world again. so then i made a new cpp file and did it with another word instead of hello world and compiled etc and it came up saying hello world again.
 
Did you make sure to save the modified source file before compiling?
 
yeh. but im a major noob probly some stupid mistake.
 
Back
Top