Stop Microsoft

Miscellaneous => Programming & Networking => Topic started by: LordWiccara on 20 May 2003, 07:32

Title: C++ newbie
Post by: LordWiccara on 20 May 2003, 07:32
i am interestred in learning c++...i hate visual basic so much.  does anyone know of any good c++ editors and compilers that are free for Red hat Linux 9?  thanks
Title: C++ newbie
Post by: KernelPanic on 20 May 2003, 14:05
g++ is a good compiler. You could write your code in any of the text editors, kwrite, vim etc.
If you are looking for an IDE, which you probably are, try Kdevelop. It should be on the RH9 Cd's.
Title: C++ newbie
Post by: KernelPanic on 20 May 2003, 14:06
g++ is a good compiler. You could write your code in any of the text editors, kwrite, vim etc.
If you are looking for an IDE, which you probably are, try Kdevelop. It should be on the RH9 Cd's.
Title: C++ newbie
Post by: LordWiccara on 21 May 2003, 01:16
thanks...but (i know its a dumb question) but whats an IDE?  i know what a hard drive IDE is, but...yea im new
Title: C++ newbie
Post by: KernelPanic on 21 May 2003, 01:33
Integrated Development Environment.

A piece of software that brings together development, compilation, linker, debug etc in a nice GUI.
They often have frameworks of apps to begin with.

VC++ is an IDE.
Title: C++ newbie
Post by: LordWiccara on 21 May 2003, 02:38
i understand now and thanks tux!
Title: C++ newbie
Post by: TheQuirk on 21 May 2003, 21:52
In my opinion, KDevelop is way too crazy with way too many options. Try Anjuta--I like it much better.

http://anjuta.sourceforge.net/ (http://anjuta.sourceforge.net/)
Title: C++ newbie
Post by: Pissed_Macman on 21 May 2003, 13:22
C++ *searching memory banks*

kind of like a grade you get on school work, only with an extra plus.
Title: C++ newbie
Post by: LordWiccara on 22 May 2003, 17:01
quote:
Originally posted by TheQuirk:
In my opinion, KDevelop is way too crazy with way too many options. Try Anjuta--I like it much better.

http://anjuta.sourceforge.net/ (http://anjuta.sourceforge.net/)



maybe ill try both   :D  

which version do u recommend?  the newest is 1.1.1 but im ot sure how stable it is...the last stable one is 1.0.0..what do u say?
Title: C++ newbie
Post by: Siplus on 23 May 2003, 04:12
i've never programmed in linux before (i've been programming c++ in visual studios for about a year now), but i'd say go with a stable version. that's what i'm dling right now : )

i've tried to write simple programs (saying 'hi') using gcc, but i always get an error saying it doesn't recognise iostream.h (or stdlib.h, i've tried both)
Title: C++ newbie
Post by: GoodwillMan on 23 May 2003, 13:21
C++ SUCKS ASS
Learn c!
Title: C++ newbie
Post by: Jordan on 24 May 2003, 08:34
There's always Microsoft Visual C++.   ;)
Title: C++ newbie
Post by: solo on 2 June 2003, 03:09
quote:
Originally posted by X11:
C++ SUCKS ASS
Learn c!



Learn C if you want to program an OS.
C++ just makes more sense  (http://smile.gif)
Title: C++ newbie
Post by: LordWiccara on 3 June 2003, 04:58
whats the true difference between c and c++?
Title: C++ newbie
Post by: solo on 3 June 2003, 08:27
C++ is a superset of C that adds support for class-based object oriented programming and some other niceties, like templates, boolean variables, and it provides a real string class.

C compilers typically create simpler, faster, and lower level code that is much more suitable for things that need to be fast (e,g, OS).

Some well-known things created in C:
Linux
XFree86
GNOME/GTK+

Some well-known things created in C++:
QT/KDE
Fresco
other stuff cant think of now