did-you-know? rent-now

Amazon no longer offers textbook rentals. We do!

did-you-know? rent-now

Amazon no longer offers textbook rentals. We do!

We're the #1 textbook rental company. Let us show you why.

9780672329418

Sams Teach Yourself C++ In One Hour A Day

by ; ;
  • ISBN13:

    9780672329418

  • ISBN10:

    0672329417

  • Edition: 6th
  • Format: Paperback
  • Copyright: 2009-01-01
  • Publisher: Sams
  • View Upgraded Edition
  • Purchase Benefits
  • Free Shipping Icon Free Shipping On Orders Over $35!
    Your order must be $35 or more to qualify for free economy shipping. Bulk sales, PO's, Marketplace items, eBooks and apparel do not qualify for this offer.
  • eCampus.com Logo Get Rewarded for Ordering Your Textbooks! Enroll Now
List Price: $49.99

Summary

Sams Teach Yourself C++ in One Hour a Day Jesse Liberty Siddhartha Rao Bradley Jones The Sixth Edition ofSams Teach Yourself C++ in 21 Days More than 250,000 sold! In just one hour a day, yours"ll have all the skills you need to begin programming in C++. With this complete tutorial, yours"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 Libraryrs"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 programrs"s power with inheritance and polymorphism Master the features of C++ by learning from programming experts Works with all ANSI C++ compilers 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. 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: BeginningIntermediate Register your book at informit.com/register for access to source code, example files, updates, and corrections as they become available.

Table of Contents

In>Who Should Read This Bookp. 1
Organization of This Bookp. 1
Conventions Used in This Bookp. 2
Sample Code for This Bookp. 3
The Basics
Getting Startedp. 7
A Brief History of C++p. 8
Interpreters and Compilersp. 9
Changing Requirements, Changing Platformsp. 10
Procedural, Structured, and Object-Oriented Programmingp. 11
Object-Oriented Programmingp. 12
C++ and Object-Oriented Programmingp. 12
How C++ Evolvedp. 14
Should I Learn C First?p. 14
Microsoft's Managed Extensions to C++p. 14
The ANSI Standardp. 14
Preparing to Programp. 15
Your Development Environmentp. 16
The Process of Creating the Programp. 17
Creating an Object File with the Compilerp. 17
Creating an Executable File with the Linkerp. 18
The Development Cyclep. 18
HELLO.cpp-Your First C++ Program
Table of Contents provided by Publisher. All Rights Reserved.

Supplemental Materials

What is included with this book?

The New copy of this book will include any supplemental materials advertised. Please check the title of the book to determine if it should include any access cards, study guides, lab manuals, CDs, etc.

The Used, Rental and eBook copies of this book are not guaranteed to include any supplemental materials. Typically, only the book itself is included. This is true even if the title states it includes any access cards, study guides, lab manuals, CDs, etc.

Excerpts

Introduction Introduction This book is designed to help you teach yourself how to program with C++. Just as you can learn to walk one step at a time, you can learn to program in C++ one hour at a time. Each lesson in this book has been designed so that you can read the entire lesson in just an hour a day. It lays emphasis on the practical usage of the language, and helps you get up-to-speed with concepts that are most important in writing C++ applications for real-world usage. By focusing for just an hour a day at a time, you'll learn about such fundamentals as managing input and output, loops and arrays, object-oriented programming, templates, using the standard template library, and creating C++ applications--all in well-structured and easy-to-follow lessons. Lessons provide sample listings--complete with sample output and an analysis of the code--to illustrate the topics of the day. To help you become more proficient, each lesson ends with a set of common questions and answers, a quiz, and exercises. You can check your progress by examining the quiz and exercise answers provided in Appendix D, "Answers." Who Should Read This Book You don't need any previous experience in programming to learn C++ with this book. This book starts you from the beginning and teaches you both the language and the concepts involved with programming C++. You'll find the numerous examples of syntax and detailed analysis of code an excellent guide as you begin your journey into this rewarding environment. Whether you are just beginning or already have some experience programming, you will find that this book's clear organization makes learning C++ fast and easy. Organization of This Book This is a book that appeals as much to a beginner in the language as it does to someone who wishes to understand C++ again, but from a more practical perspective. It is hence divided into five parts: Part I, "The Basics," introduces C++, and its syntactical details. This is very useful for absolute beginners who would first like to understand the basics of programming in C++. Part II, "Fundamentals of Object-Oriented Programming and C++," introduces the object-oriented features of C++--those that set it apart from its predecessor C. This section lays the foundation for a more practical view of the language and one of its most powerful utilities, the standard template library. Part III, "Learning the Standard Template Library (STL)," gives you a close look at how C++ is used in real-life practical applications where quality of your application can be vastly improved by using readily available, standard-compliant constructs. Part IV, "More STL," introduces you to algorithms such as sort and other STL constructs that help streamline your application and increase its reliability. Part V, "Advanced C++ Concepts," discusses details and features of the programming language that not every application built using it needs to have, yet, knowing them can help in error analysis or in writing better code. Conventions Used in This Book Within the lessons, you'll find the following elements that provide additional information: Tip -These boxes highlight information that can make your C++ programming more efficient and effective. Note -These boxes provide additional information related to material you just read. FAQ -What do FAQs do? Answer: These Frequently Asked Questions provide greater insight into the use of the language and clarify potential areas of confusion. Caution -These focus your attention on problems or side effects that can occur in specific situations. These boxes provide clear definitions of essential terms. DOuse the "Do/Don't" boxes to find a quick summary of a fundamental principle in a lesson. DON'Toverlook the useful information offered in these boxes. This book uses various typefaces to help you distinguish C++ code from regular English. Actual C++ code is typeset in a specialmonospacefont. Placeholders--words or characters temporarily used to represent the real words or characters you would type in code--are typeset in italic monospace. New or important terms are typeset in italic. Sample Code for This Book The code samples in this book are available online for download from the publisher's website. Copyright Pearson Education. All rights reserved.

Rewards Program