C Board  

Go Back   C Board > General Programming Boards > C++ Programming

Reply
 
LinkBack Thread Tools Display Modes
Old 07-01-2006, 07:25 AM   #16
Registered User
 
Join Date: Apr 2006
Posts: 20
"C++ How to Program, Fifth Edition By Deitel"

Don't go for the older editions. Book is lengthy but good. Great for Beginners and possibly intermediate programmers.
lawina is offline   Reply With Quote
Old 07-05-2006, 08:10 AM   #17
Registered User
 
Join Date: Jul 2006
Posts: 14
Computing Fundamentals with C++: Object-Oriented Programming & Design. Second Edition. Rick Mercer

Great book for getting started with C++. Doubles as a good starter and a great reference.
maverickbu is offline   Reply With Quote
Old 07-05-2006, 06:08 PM   #18
Hardware Engineer
 
Join Date: Sep 2001
Posts: 1,397
Another source (besides ANSI) for The C/C++ Language Standards is The British Standards Institute. At about $75.00 USD each, the price is about 1/4 of the ANSI hard-copy price. (They are available from Amazon.)

C++ Language Standard (BSI) = ISBN 0470846747
C Language Standard (BSI) = ISBN: 0470845732
DougDbug is offline   Reply With Quote
Old 07-18-2006, 01:37 PM   #19
Registered User
 
Frenzied's Avatar
 
Join Date: Jul 2006
Location: UK
Posts: 4
Can anyone advise me on a good book which includes GUI programming? I'm learning out of C++ How to Program (5th edition) at the moment which in my amateur opinion is a pretty good book, everything is explained and lots of exercises to do. Unfortunately they have omitted any GUI and event handling. They do have a separate book out for GUI but it was released in 2000 which I assume is a bit out of date.
Frenzied is offline   Reply With Quote
Old 07-19-2006, 03:52 PM   #20
Frequently Quite Prolix
 
dwks's Avatar
 
Join Date: Apr 2005
Location: Canada
Posts: 7,629
Quote:
Originally Posted by DougDbug
Programming Windows, by Charles Petzold - This is the book for learning Windows Programming. You need to know standard C or C++ before starting this book.
Look at some of the books already mentioned.
__________________
dwk

Seek and ye shall find. quaere et invenies.

"Simplicity does not precede complexity, but follows it." -- Alan Perlis
"Testing can only prove the presence of bugs, not their absence." -- Edsger Dijkstra
"The only real mistake is the one from which we learn nothing." -- John Powell


Other boards: DaniWeb, TPS
Unofficial Wiki FAQ: cpwiki.sf.net

My website: http://dwks.theprogrammingsite.com/
Projects: codeform, xuni, atlantis, etc.

New project: nort
dwks is offline   Reply With Quote
Old 07-21-2006, 01:01 AM   #21
Registered User
 
Join Date: Feb 2006
Posts: 6
Well a must read for all C++ serious programmers is:-
"The Design and Evolution of C++" by Bjarne Stroustrup (Creator of C++).
Far from being nasty and boring this books gives the detailed accounts of how many things got incorporated in the C++ and what was the motivation behind such things. So once you know the building blocks and know why were they put, you can be better programmer because you will understand the range of tools and whether your particular project demands such thing or not eg. <<, >> operator appended to cout, cin statement is nothing but one form of operator overloading that is overloading of bitwise operators.
unmeshghosh is offline   Reply With Quote
Old 07-21-2006, 11:37 PM   #22
Just Lurking
 
Dave_Sinkula's Avatar
 
Join Date: Oct 2002
Posts: 4,990
Although I'm not a C++ guy and I don't have any of these, I thought I'd drop my (hopefully) better-late-than-never post:
Quote:
Originally Posted by Dave Sinkula
With regard to C++ books, I'll just echo the advice here.
Quote:
The following books are recommended; read them in mostly the order listed.
Proper credit: vawjr, who now has this posted.

The following is also recommended.
C++ Coding Standards : 101 Rules, Guidelines, and Best Practices, Herb Sutter, Andrei Alexandrescu
Quote:
Originally Posted by Daved
Consider adding C++ Coding Standards to that list. It is by Sutter and Alexandrescu, and has an excellent compilation and mini-discussion of many of the topics discussed in greater detail in the other books. It is not a coding standards book, but rather a guide to best practices in C++ code and would fit perfectly as an introduction or summary of many of the other books on that list (after Accelerated C++).
Book reviews can also be found at www.accu.org: Beginner's C++.
No apologies for duplication with other recommendations in this thread -- consider it a double recommendation for the book!
__________________
7. It is easier to write an incorrect program than understand a correct one.
40. There are two ways to write error-free programs; only the third one works.*
Dave_Sinkula is offline   Reply With Quote
Old 08-23-2006, 08:10 PM   #23
Registered User
 
Join Date: Aug 2006
Posts: 19
C++ For Dummies - 5th Edition by Stephen Randy Davis

This is a great book to get started with C++. Teaches all the basic fundementals.
mburt is offline   Reply With Quote
Old 09-14-2006, 08:52 PM   #24
Registered User
 
Join Date: Oct 2004
Posts: 151
C++ Annotations

This is a book for people who already know C to pick up C++ (thus it is free of the cruft you get in "comprehensive" C++ texts). And it's available on the Intertron.
__________________
System: Debian Sid and FreeBSD 7.0. Both with GCC 4.3.

Useful resources:
comp.lang.c FAQ | C++ FQA Lite
zx-1 is offline   Reply With Quote
Old 11-15-2006, 08:14 AM   #25
Its hard... But im here
 
swgh's Avatar
 
Join Date: Apr 2005
Location: England
Posts: 1,466
Teach yourself C++ in 24 hours. Good book but a poor CD. It uses Borland Builder X which
is a little dated. I still own this book now and use it for cross checking a reference
__________________
I'm just trying to be a better person - My Name Is Earl
swgh is offline   Reply With Quote
Old 12-02-2006, 02:52 AM   #26
Registered User
 
Join Date: Nov 2006
Posts: 3
Quote:
Originally Posted by lawina
"C++ How to Program, Fifth Edition By Deitel"

Don't go for the older editions. Book is lengthy but good. Great for Beginners and possibly intermediate programmers.


that`s the book wich i take it as a text book in my university but with 4th edition

it`s relly good and simple to understand
hb_abid is offline   Reply With Quote
Old 12-02-2006, 05:45 AM   #27
MFC killed my cat!
 
manutd's Avatar
 
Join Date: Sep 2006
Location: Boston, Massachusetts
Posts: 880
Quote:
Originally Posted by mburt
C++ For Dummies - 5th Edition by Stephen Randy Davis

This is a great book to get started with C++. Teaches all the basic fundementals.
Not really. It teaches C style C++.
__________________
Silence is better than unmeaning words.
- Pythagoras
My blog
manutd is offline   Reply With Quote
Old 12-04-2006, 03:06 AM   #28
Its hard... But im here
 
swgh's Avatar
 
Join Date: Apr 2005
Location: England
Posts: 1,466
Quote:
that`s the book wich i take it as a text book in my university but with 4th edition
I had the fourth edition before I bought the fifth. The new one is a lot more spaced out, and they have shortened the chapters down. i know it is pricey ( 30.00 ) but much more of the code has been updated, eg: early classes and tree-lists are also added. I reccomend getting the fifth edition now, and it does away with that dreadful elevator simulation too.
__________________
I'm just trying to be a better person - My Name Is Earl
swgh is offline   Reply With Quote
Old 12-06-2006, 06:26 AM   #29
Registered User
 
Join Date: Dec 2006
Location: Washington
Posts: 18
C++ in a Nutshell

If you don't already own it, and you think of yourself as a C++ programmer, then you probably want to have this excellent book in your arsenal.

http://www.amazon.com/C%2B%2B-Nutshe...285211-9351077

:davis:
:davis: is offline   Reply With Quote
Old 12-06-2006, 06:30 AM   #30
Registered User
 
Join Date: Dec 2006
Location: Washington
Posts: 18
Quote:
Originally Posted by Frenzied
Can anyone advise me on a good book which includes GUI programming? I'm learning out of C++ How to Program (5th edition) at the moment which in my amateur opinion is a pretty good book, everything is explained and lots of exercises to do. Unfortunately they have omitted any GUI and event handling. They do have a separate book out for GUI but it was released in 2000 which I assume is a bit out of date.
Since you do not indicate a platform preference, I'd strongly recommend using Qt as your GUI library so that the programs you write will be more platform independent. Here is a fantastic Qt book, which includes a CD with all of the free versions of Qt for common platforms (Unix, Mac, Windoze)

http://www.amazon.com/C%2B%2B-GUI-Pr...285211-9351077

:davis:
:davis: is offline   Reply With Quote
Reply

Thread Tools
Display Modes

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
any book recommendations? NewnOT Windows Programming 1 06-21-2009 02:12 PM
JavaScript book recommendations neandrake Tech Board 2 04-05-2009 12:27 PM
C++ Book Editions and Recommendations cpudaman C++ Programming 7 02-10-2008 11:52 AM
Language REFERENCE book recommendations? DougDbug C++ Programming 3 01-18-2003 02:24 PM
My book recommendations for rank beginners ... snakum C++ Programming 4 08-21-2002 10:38 AM


All times are GMT -6. The time now is 04:33 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.0 RC2

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22