Click to See Complete Forum and Search --> : C++, help, beginner with C++


cobrasniper555
10-18-2005, 06:27 PM
Hello, I am just beginning C++. Although, I am only finding tutorials that use other programs to type in the code. Can I type this with any text editor like PHP/HTML/XML. If so, what extension do I use to save it. Oh, and one last question, its not needed, but if you want, could someone give me any links to great tutorials. Thanks!
Thanks for reading and/or helping me out!
-Cobra

tirebiter
10-21-2005, 05:58 AM
I suppose you could use any text editor for writing your c++ code (the extension for c++ files is .cpp) but you'll still need a compiler to process your code and give you an executable file. I'm a newbie at c++ too, i use the Bloodshed Dev-C++ IDE and i like it, give it a try:

http://www.bloodshed.net/download.html

good luck

cobrasniper555
10-22-2005, 02:38 PM
ya, I already have that, I already use that decompiler. I have run into another problem though. When I get a program decompiled and run it, the DOS window or whatever will pop up and close, like a blink. I'm doing simple programs right now, here, look here (http://www.highschool-sucks.com/simple_program.zip). I'm confused with this, I need some online tutoring, anyone know of anyone that can help me on any IM or something?
Thanks,
-Cobra

LiLcRaZyFuZzY
10-22-2005, 02:45 PM
it's actually a compiler and not a decompiler.
A good ressource is 3dBuzz: register for free, and you can get the c++ training VTM for free. It's really cool!

oh, and by the way, your sig sucks!

cobrasniper555
10-22-2005, 04:54 PM
I know Dev-C++ is a compiler, that's why I have it and you didn't answer my question when I asked what was wrong with the program I was working on.

LiLcRaZyFuZzY
10-22-2005, 05:21 PM
...and i didnt say i would, i just gave a link to a faboulous resource

JPnyc
10-22-2005, 06:42 PM
http://www.codeguru.com/forum/index.php?

LiLcRaZyFuZzY
10-22-2005, 07:51 PM
http://3dbuzz.com

tirebiter
11-01-2005, 06:04 AM
You probably already found the solution but, just in case: use cin.get() at the end of your code to make the program wait for some input, thus giving you time to see if the prog did what it was supposed to do.