Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Closed Thread
Old 07-05-2005, 05:57 PM   #11 (permalink)
Chase's Avatar
 
CECS Major

Join Date: Jul 2005

Location: Louisville, KY

Posts: 387

Chase is on a distinguished road

Send a message via MSN to Chase Send a message via Yahoo to Chase Send a message via Skype™ to Chase
Default

gab00n's probably right...Try these steps and see if it helps...You may be leaving out a part or doing one wrong:
1. Boot up Dev-C++
2. Choose file > new > source file
3. Then copy and paste the following code exactly:

#include <cstdlib>
#include <iostream>

using namespace std;

int main(int argc, char *argv[])
{
cout << "Hello World\n\n";

system("PAUSE");
return EXIT_SUCCESS;
}



4. Now go to execute (on the top menu bar) > compile & run
5. Your program should compile in a couple seconds then run



Hope that helps-
::-Chase-::
Chase is offline  
Old 07-06-2005, 01:40 AM   #12 (permalink)
 
True Techie

Join Date: Oct 2004

Posts: 183

AndTwenTy10

Send a message via AIM to AndTwenTy10 Send a message via Yahoo to AndTwenTy10
Default

Guess what? It sure worked Chase, Thanks. That helped! Well Atleast now I know it works.. . So, What should I do from here? What can I do?
AndTwenTy10 is offline  
Old 07-06-2005, 11:39 AM   #13 (permalink)
Chase's Avatar
 
CECS Major

Join Date: Jul 2005

Location: Louisville, KY

Posts: 387

Chase is on a distinguished road

Send a message via MSN to Chase Send a message via Yahoo to Chase Send a message via Skype™ to Chase
Default

OK, now that you have an idea of how the compiler works I suggest grabbing yourself a book called "C++ for Dummies 5th Edition". It does an extremely great job of explaining C++ to beginners. You can pick it up on just about any online book store or at your local Barnes and Nobles or Walden Books. Glad that helped!
::-Chase-::
Chase is offline  
 
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On