
darkdemon
Enthusiast

Jul 19, 2006, 9:59 AM
Post #8 of 9
(504 views)
Shortcut
|
This is the way I've always been, I think hard stuff are easy and easy stuff are hard, even in school, I get confused with easy stuff, but with the hard stuff I think it's easy. Edit : I found out it was my computer, it's "too fast" for the application, when the console application is executed it shows the Hello World, but turns off right away so I couldn't see the text, but now I know the code to make it work.
// (C)2006.darkdemon(darkangel) made this application. All rights reserved. #include <stdlib.h> //Includes the header so the compiler will understand the code. #include <iostream> //Includes the header so the compiler will understand the code. using namespace std; int main () { cout <<"Hello World!"; //Prints Hello World on the application system("pause"); //Stop the application so you can read what it says. return 0; }
U r reading a signature. Free game hacks!
(This post was edited by darkdemon on Jul 21, 2006, 2:04 PM)
|