PlaneShift

Fan Area => The Hydlaa Plaza => Topic started by: Clowd on July 11, 2004, 02:06:43 am

Title: C++ tutorial & compiler
Post by: Clowd on July 11, 2004, 02:06:43 am
Does anyone know where I can find and download a free C++ compiler, as well as C++ tutorials?  I\'m interested in learning the language.
Title:
Post by: Barugon on July 11, 2004, 03:19:18 am
I recommend GCC (http://gcc.gnu.org/). If you use Windows then there\'s a really nice IDE that uses MinGW (http://www.mingw.org/) (a Windows version of GCC; MinGW stands for Minimalist GNU for Windows) called Bloodshed Dev-C++ (http://www.bloodshed.net/devcpp.html).  As for tutorials, I would suggest using Google.
Title:
Post by: RussianVodka on July 11, 2004, 03:29:00 am
I am curently using the \"Learn C++ in 21 Days (http://newdata.box.sk/bx/c/)\" tutorial... you could try that out. :)
Title:
Post by: Harwen on July 11, 2004, 04:38:28 am
Ah, thanks RussianVodka, I was looking for another tut myself, all the ones I keep finding make me un-interested :(

Bloodshed is neato! :D
Title:
Post by: RussianVodka on July 11, 2004, 07:51:28 pm
thanx to that tutorial (im not fully finished with it though) i speak fluent Hex! :D
Title:
Post by: windwalker on July 11, 2004, 09:10:53 pm
Tutorial (http://www.cprogramming.com/tutorial.html)

theres another one
Title:
Post by: Clowd on July 11, 2004, 09:58:44 pm
ok, I\'ve just downloaded and installed Dev-C++ beta 8, I will be doing the tutorials at http://www.cprogramming.com, because it is the first C++ site I found, and its free.

Oh, and thank you all!
Title:
Post by: Psybur on July 12, 2004, 04:53:08 pm
I prefer books. :}
I use C++ for Dummies.
SAMS is also good.
Title:
Post by: Cryha on July 12, 2004, 07:04:56 pm
I\'m learning python. I\'ve heard that its a lot easier to use than C++ but still has the same functionality
Title:
Post by: Uyaem on July 13, 2004, 12:48:45 pm
Biggest difference: Python is a script language, C is not.
Meaning that you will always need an interpreter to run programs made in Python. (or a native compiler, if available)