woodys-uk
Price: £26.80
In stock

37 used & new from £0.21

Have one to sell? Sell yours here
 
 
Sams Teach Yourself C++ in 21 Days
 
See larger image
 

Sams Teach Yourself C++ in 21 Days (Paperback)

by Jesse Liberty (Author)
3.8 out of 5 stars  See all reviews (101 customer reviews)

Available from these sellers.


5 new from £26.56 32 used from £0.21

Customers Viewing This Page May Be Interested in These Sponsored Links

  (What is this?)
   C++ opens new browser window
Microsoft.com/VisualStudio  -  Try Visual Studio® 2010 Beta For Free. Quick & Easy Download! 
   Sams 21 days opens new browser window
SHOP.COM  -  Buy Sams 21 days Now Find Exceptional Value Every Day! 
  
 

Customers Who Bought This Item Also Bought

Sams Teach Yourself C in 21 Days

Sams Teach Yourself C in 21 Days

by Bradley L. Jones
4.2 out of 5 stars (9)  £14.46
Financial Markets and Corporate Strategy: European edition

Financial Markets and Corporate Strategy: European edition

by David Hillier
4.0 out of 5 stars (6)  £41.70
Sams Teach Yourself C in 21 Days

Sams Teach Yourself C in 21 Days

by Peter Aitken
Sams Teach Yourself Visual Basic 6 in 24 Hours

Sams Teach Yourself Visual Basic 6 in 24 Hours

by Greg Perry
3.4 out of 5 stars (12)  £13.76
Sams Teach Yourself SQL in 21 Days

Sams Teach Yourself SQL in 21 Days

by Ron Plew
3.6 out of 5 stars (8)  £20.48
Explore similar items

Product details

  • Paperback: 792 pages
  • Publisher: Sams; 2 edition (28 May 1997)
  • Language English
  • ISBN-10: 0672310708
  • ISBN-13: 978-0672310706
  • Product Dimensions: 22.9 x 18.3 x 5.3 cm
  • Average Customer Review: 3.8 out of 5 stars  See all reviews (101 customer reviews)
  • Amazon.co.uk Sales Rank: 928,462 in Books (See Bestsellers in Books)

    Popular in this category:

    #63 in  Books > Computing & Internet > Programming > Introduction to Programming > C++
  • See Complete Table of Contents

Product Description

Product Description

Sams Teach Yourself C++ in 21 Days, Second Edition is a hands-on guide to learning object-oriented programming design and analysis. You'll gain a thorough understanding of all basic concepts, including program flow, memory management, and compiling and debugging. To better facilitate retention and promote learning, the book is structured in the form of a 21-day self-paced workshop. This book breaks down the concepts into easy-to-understand chapters, using many listings to illustrate not just code, but how to improve upon code. It's fully revised, updated, and ANSI compliant.



From the Author

Third Edition - Fully Updated
I'm very proud of the third edition of this book, which I've fully updated to the new ANSI/ISO standard. Every code example has been checked on a number of compilers, and I provide full source code, a FAQ and an errata sheet on my web site at http://www.libertyassociates.com. I thank you very much for considering my book and I hope it will meet your needs and expectations. Thanks again. -j --This text refers to an out of print or unavailable edition of this title.

Suggested Tags from Similar Products

 (What's this?)
Be the first one to add a relevant tag (keyword that's strongly related to this product)
 

Your tags: Add your first tag
 

What Do Customers Ultimately Buy After Viewing This Item?


 

Customer Reviews

101 Reviews
5 star:
 (45)
4 star:
 (26)
3 star:
 (10)
2 star:
 (8)
1 star:
 (12)
 
 
 
 
 
Average Customer Review
3.8 out of 5 stars (101 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

 
5 of 5 people found the following review helpful:
2.0 out of 5 stars Out of date style and confusing, 14 Aug 2007
By A. J. HAWKEN "Tony Hawken" (London - UK) - See all my reviews
(REAL NAME)   
This book claims that the code is ANSI compliant and so should work with a modern C++ compiler. As far as I can see this is not so. The only reference that I can see is the standard namespace which is mentioned in day 1. There is no use of the standard String class - even at a basic level. Instead in day 13, together with arrays and linked list you will see the old fashioned C-strings being used together with the authors version of a String class. Interestingly enough within the program that includes the author's string class there is a #include <string.h> instead of #include <cstring> indicating that the author has mixed old C++ header files with those currently available in the ANSI/OSI standard. This I find very confusing, and would indeed be doubly so for a total beginner.
There are also no mention of many important topics included in the ANSI/OSI standard. I would have thought that the vector class would have fitted in well with the chapter on arrays and linked lists. The linked lists could have been left till later.

The earlier chapters are relatively easy to follow and could easily be completed in 1 day. The main problem is that the order of presentation does not make much sense. The beginner is not guided from one concept to another. Many of the explanations are rather longwinded and there is a lot of waffle that should be skipped.

The book is useful in places, but does not form a coherent text book for a beginner C++ programmer, which I understand is the target audience.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
20 of 24 people found the following review helpful:
5.0 out of 5 stars FANTASTIC!!!!, 13 April 2002
I have loads of books on C++. I am a skilled C programmer but could never get the gist of C++ and Object Oriented programming until I studied this book. Yes STUDIED. There are exercises for you to complete at the end of each chapter. DO THEM. You definitely will not do it in 21 days. The author (in another book) admits these are 'virtual days' needing 8-10 hours of study for each chapter. If this seems alot don't bother with C++ try Visual basic, C++ is not easy.
This must be the best book I have on C++, it doesn't quickly skim the subject but analyses the concepts and has detailed explanations of the code examples with DO's and DON'Ts. If you complete this book go onto
Scott Meyers Effective C++ books then you'll be a C++ GURU. Oh... you'll also need to study books on windows programming, see Jeff Prosise's book Programming windows with MFC. Thank you Jesse for this great book.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
13 of 16 people found the following review helpful:
3.0 out of 5 stars OK, but not the best, 13 Oct 2003
By A Customer
The book is well written, well structured, and explains the basics of C++ in a clear and easy to read fashion. There are far worse books out there.

However, it spends time on things that are irrelevant to the absolute beginner (eg arrays of pointers, a whole chapter on OO design) and spends no time at all teaching you about the classes provided by the C++ standard library, which have the potential to make things way easier for beginners. Also, both the examples and exercises provided focus very much on syntax rather than on use, and as such you gain very little clue as to how what you are being taught might be used in a real program.

I prefer "Accelerated C++", which I bought on the recommendation of the website of the Association of C and C++ Users, and was glad that I did. It covers more material and gives a better idea of how to program real-life programs that Liberty's book, despite the fact it is only half the length.

The only problem with this alternative is that there is no repetition or filler at all - in Liberty's book the cut out grey boxes and constant repetition of earlier points make it a far easier read, whilst if you skip a sentence in Accelerated C++ for being too hard to understand you'll probably understand the next sentence even less.

In short, if you're a total beginner who likes things to be repeated a lot to understand them, maybe Liberty's book is for you, but if you're willing to put up with a more intense, technical style of writing then you could gain a lot more by buying Accelerated C++ instead.

Comment Comment (1) | Permalink | Was this review helpful to you? Yes No (Report this)


Share your thoughts with other customers: Create your own review
 
 
 
Most Recent Customer Reviews

5.0 out of 5 stars brilliant book well worth the money
This book explains the different part of c++ clearly, it makes pointer and references easy to understand, they can be confusing if not explained clearly but this book does this... Read more
Published on 29 Jul 2004 by R. Lovett

4.0 out of 5 stars Good book for a complete beginner
This book is excellent for a programmer trying to get into C++ and object orientated programming, although I would not recommend trying to cover the book in 21 days as the title... Read more
Published on 25 Jun 2004

2.0 out of 5 stars Good text, poor code
The trouble with this book is the example code to illustrate the points being made. It is difficult to come up with meaningful yet short examples, but the author doesn't seem to... Read more
Published on 8 Dec 2003 by A L Burrows

5.0 out of 5 stars Worth the money
I have a shelf full of other C++ books and most are poorly written with no examples. The author does a great job of giving examples relevant to what the chapter teaches and... Read more
Published on 25 Mar 2003 by James

1.0 out of 5 stars very disappointing
I bought this book because it was by sams, and Sams teach yourself HTML 4.0 is brilliant.
This book, however, is poorly explained, and even the "Hello World" example... Read more
Published on 8 Feb 2002 by Mrs. M. Parker

5.0 out of 5 stars Great for VB to C++ers
I'm a VB programmer and I wanted a basic knowledge of C++ so I could start to make my VB stuff quicker. Read more
Published on 30 Oct 2001

5.0 out of 5 stars Great book for beginners!
I'm really really impressed by this book. Most of the Teach Yourself blah blah in X weeks/days/hours really seem to miss huge sections of information about the topic. Read more
Published on 27 Aug 2001

4.0 out of 5 stars Well-written and far-reaching but rather fast-paced
I bought this book as a C++ newbie and feel I have learnt a lot from it. All topics are well-presented and covered in detail, with examples and tests to augment the learning... Read more
Published on 4 Jul 2001

2.0 out of 5 stars Inadequate information about the compiler software
The book is fine but the compiler and other software that comes on the CDs has virtually no instructions. Read more
Published on 14 May 2001 by John Yarwood

3.0 out of 5 stars No good for Windows
I got this book and while its nice for C++, its not much use for Windows programming.

I actually do not like the whole SAMS series, I hate books without real life... Read more

Published on 29 Mar 2001 by nk2@stir.ac.uk

Only search this product's reviews



Customer Discussions

This product's forum
Discussion Replies Latest Post
No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
 

   


Listmania!


Look for similar items by category


Look for similar items by subject


Feedback

Ad

Your Recent History

 (What's this?)

After viewing product detail pages or search results, look here to find an easy way to navigate back to pages you are interested in.