Click to See Complete Forum and Search --> : Good C++


jbstew32
06-10-2002, 03:54 PM
What's a good site (ie tutorials that are good, forums, etc..) that teaches C/C++ from the most basic level - a fairly advanced one?

anacron
06-10-2002, 03:57 PM
Try Cplusplus.com (http://www.cplusplus.com/), it's pretty good. ;)

tecknophreak
06-10-2002, 09:14 PM
Originally posted by anacron:
<STRONG>Try Cplusplus.com (http://www.cplusplus.com/), it's pretty good. ;)</STRONG>

well, you might find some phreaks over there though :D

EscapeCharacter
06-11-2002, 05:20 AM
http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html

[ 11 June 2002: Message edited by: EscapeCharacter ]

Riley
06-11-2002, 10:15 AM
I know that neither of those places helped me, but the best resource ever to help me was Jamsa's C/C++ Programmer's Bible. I still use it today and it's an awesome reference. It's huge and a steal for $50.

Elijah
06-14-2002, 07:08 PM
well, you might find some phreaks over there though

ok, I'm ignorant to some lingo but I think I heard this before ... what's a phreak??
(hacker thingy?)

raab
06-14-2002, 08:12 PM
You could try Sams Teach Yourself C++ in 21 Days here (http://newdata.box.sk/bx/c/).

X_console
06-15-2002, 02:44 AM
A phreak is a phone hacker. Just like computer hackers have a good understanding of computers, phreaks have a good understanding of telephone systems and networks.

Not sure if that's what the technophreak was referring to though.

isda
06-19-2002, 08:53 PM
hi to all.

could somebody help me, bcoz when i try to compile my program conio.h header could not be found.

can anyone help me and give me some websites that could help me.

thanks for your unfailing support...
:confused:

kmj
06-20-2002, 11:07 AM
there is no conio.h in linux, as far as I know. Look into ncurses.h or curses.h; they should have the same functionality as conio.h

tecknophreak
06-20-2002, 01:06 PM
Originally posted by X_console:
<STRONG>A phreak is a phone hacker. Just like computer hackers have a good understanding of computers, phreaks have a good understanding of telephone systems and networks.

Not sure if that's what the technophreak was referring to though.</STRONG>

that's one way to describe a phreak, or it could just be a shortened version of tecknophreak. i go over there once or twice a day, depending on how bored i am with work.

Strike
06-22-2002, 12:40 PM
Originally posted by kmj:
<STRONG>there is no conio.h in linux, as far as I know. Look into ncurses.h or curses.h; they should have the same functionality as conio.h</STRONG>

Well, ncurses isn't a drop-in replacement for conio.h - it has very different syntax from what I remember.