Sams Teach Yourself C++ in One Hour a Day (Sams Teach Yourself Series) by Jesse Liberty, Bradley Jones, Siddhartha Rao

BUY IT NEW

  • $49.99 List price
    $47.49 Online price
    $42.74 Member price
    (Save 14%)
    Limited Time Offer! Everyone receives the Member Price on books.
    See Details
  • skip to cart
  • Add To List uiAction=GetAllLists&page=List&pageType=list&ean=9780672329418&productCode=BK&maxCount=100&threshold=3

GET FREE SHIPPING ON ORDERS OF $25 OR MORE

DELIVERY & GIFT DETAILS:

Usually ships within 24 hours

Delivery Time and Shipping Rates

Eligible for gift wrap & gift message.

BUY IT USED

16 copies from $24.92

See All Available

Pick Me Up

Reserve it at BN.com & pick it up in 60 minutes at your local store.

Enter a zip code

(Paperback - Sixth Edition)

  • Pub. Date: July 2008
  • 857pp
  • Sales Rank: 320,472
    Buy it Used: 16 copies from $24.92 See All Available

    Customers who bought this also bought

     
    • Overview
    • Editorial Reviews
    • Customer Reviews
    • Features

    Product Details

    • Pub. Date: July 2008
    • Publisher: Sams
    • Format: Paperback, 857pp
    • Sales Rank: 320,472

    Synopsis

    Sams Teach Yourself C++ in One Hour a Day

     

    Jesse Liberty

    Siddhartha Rao

    Bradley Jones

     

    The Sixth Edition of Sams Teach Yourself C++ in 21 Days

    More than 250,000 sold!

     

    In just one hour a day, you’ll have all the skills you need to begin programming in C++. With this complete tutorial, you’ll quickly master the basics and then move on to more advanced features and concepts:

    • Master the fundamentals of C++ and object-oriented programming
    • Learn some of the more advanced features of C++
    • Learn the Standard Template Library and the containers and algorithms used in most real-world C++ applications
    • Learn how to build effective programs in C++ with hands-on exercises
    • Get expert tips on implementing C++ in the corporate environment

     

    Learn on your own time, at your own pace

    • No previous programming experience required
    • Learn C++ and object-oriented design, programming, and analysis
    • Write fast and powerful C++ programs, compile the source code, and create executable files
    • Understand the latest ANSI standard
    • Use the Standard Template Library’s algorithms and containers to write feature-rich yet stable C++ applications
    • Develop sophisticated programming techniques with functions, arrays, variables, and smart pointers
    • Learn to expand your program’s power with inheritance and polymorphism
    • Master the features of C++ by learning from programming experts
    • Works with all ANSI C++ compilers

     

    Jesse Liberty isthe author of numerous books on software development, including best-selling titles on C++ and.NET. He is the president of Liberty Associates, Inc., where he provides custom programming, consulting, and training.

     

    Siddhartha Rao, Microsoft MVP for Visual C++, has experience in programming driver and application software using C++. He is an expert in the Windows programming arena and works for a German software giant. He also moderates CodeGuru.com, a vibrant online programming community.

     

    Bradley Jones, Microsoft MVP for Visual C++, runs a number of software development sites including Developer.com, CodeGuru.com, DevX, VBForums, Gamelan, and other JupiterWeb-owned sites.

     

    Category:  Programming

    Covers:  C++

    User Level:  Beginning–Intermediate

     

    Register your book at informit.com/register for access to source code, example files, updates, and corrections as they become available.

    More Reviews and Recommendations

    Biography

    Siddhartha Rao is a Microsoft Most Valuable Professional for Visual C++ and a moderator at one of the Internet's most vibrant online development communities, CodeGuru.com. "Sid," as he is popularly known, is an expert in the Windows programming domain, and is experienced in the architecture and development of driver and application software using C++ and other modern programming languages. Currently employed by a German software giant, he specializes in software landscape management and best practices in software development. With the international experience of having lived and worked in three countries behind him, he believes that the travel bug has bit him, and firmly so! Sid speaks many languages that have nothing to do with programming, and when he's not working, you will find him discovering new places on the planet, or shooting—using his Canon, of course!

     

    Jesse Liberty is the author of numerous books on software development, including best-selling titles on C++ and.NET. He is the President of Liberty Associates, Inc., where he provides custom programming, consulting, and training.

     

    Bradley L. Jones, Microsoft MVP for Visual C++, runs a number of software development sites including Developer.com, CodeGuru.com, DevX, VBForums, Gamelan, and other JupiterWeb-owned sites.

    Customer Reviews

    • Reader Rating:
    • Ratings: 2Reviews: 1

    Sams Teach Yourself C in One Hour a Day (Sams Teach Yourself Series) Iby Anonymous

    Reader Rating:
    See Detailed Ratings

    July 25, 2008: never read the 5th edition of this book, so I can't really remark on the differences with this 6th edition. But considering just this edition... The book fits well into the style of the series of 'Teach Yourself ... in One Hour a Day'. Each chapter, which the authors term a lesson, is bite-sized. I can readily envisage a typical neophyte to programming (of any language) being able to assimilate its contents in roughly an hour. Keep in mind that if you have never encountered this series before, then don't take too literally the one hour limit, as far as understanding the text in each chapter. Some chapters will naturally be more important and cover more complex concepts than others. If you need extra time, take it. The shoehorning into an hour is only an approximation. What might be the simpler chapters? One could be that on controlling program flow, using while, do-while and for loops. The most important item in this chapter is that you should use these constructs whenever possible, in place of goto. Yes, you can use goto in C. But the book warns that this leads to spaghetti code. Tangled and difficult to debug and extend. Goto is a tempting shortcut to beginners that must be resisted. A more complicated chapter is on pointers. Describing the some of the myriad ways that they can be used and misused. There is ample warning about pointer errors. The book does not do a comparitive analysis with other languages. But you should know that the designers of Java thought pointer bugs in C/C were so numerous and miserable that pointer arithmetic has been essentially banned in Java. Yeah, you want to be a C programmer why else would you be considering this book? That's fair enough. But it doesn't hurt to know some of the key differences between C and its major alternative, which seems to be Java. If nothing else, this particular difference can keep you focused on very carefully writing pointer code.