C++ FROM SCRATCH: Learn C++ While Building an Application
 Liberty, Jesse. 1999

 Contents: Introduction to C++; Getting Started; Program Flow; Creating Classes; Playing the Gamep Using Linked
 Lists; Canonical Methods; Using Polymorphism; Implementing Templates; Leveraging the Standard Template
 Library; Computer Guesses; Delegating Responsibility; Persistence; Introducing Exceptions; Next Steps. CD-ROM
 INCLUDED.
 QUE ISBN: 0789720795 PGS: 417 List: $29.99  LESS 20% ($6.00)  YOUR PRICE: $23.99
 

C++ PRIMER FOR ENGINEERS: Object-Oriented Approach
 Ponnambalam, K. & Adguindigue, T. 1997

 Contents: Problem Solving Using Computers; C++ Programming Basics; Selections & Repetitions; Functions to
 Aid Modularity; Arrays for Grouping Data of Same Type; Structures of Group Data; Encapsulation of Data &
 Functions in Classes; Inheritance to Aid Reusability; Pointers to Aid Efficient Implementation; Miscellaneous
 Topics in C++; Java for C++ Programmers. CD-ROM included.
 MCGRAW-HILL ISBN: 0079131409 PGS: 293 List: $43.95  LESS 5% ($2.20)  YOUR PRICE: $41.75
 

C++: The Core Language - O'REILLY
 Satir, Gregory & Brown, Doug 1995

 Contents: Object-Oriented Programming with Classes; C++ Without Classes; Abstraction with Member Functions;
 Encapsulation with Access Specifiers; Hierarchy with Composition & Derivation; Better Abstraction with
 Constructors & Destructors; Better Abstraction with New & Delete; References; Better Abstraction with Other
 Special Member Functions; Example Class; Better Hierarchy with Templates; Polymorphism with Virtual Functions;
 More About Polymorphism; Implementing an Object-Oriented Design; An Example Program; and What to Study
 Next.
 O'REILLY & ASSOCIATES ISBN: 156592116X PGS: 207 List: $24.95  LESS 20% ($4.99)  YOUR PRICE: $19.96

ESSENTIAL C++
 Lippman, Stanley B. 2000

 Contents: Basic C++ Programming; Procedural Programming; Generic Programming; Object-Based Programming;
 Object-Oriented Programming; Programming with Templates; Exception Handling.
 ADDISON-WESLEY ISBN: 0201485184 PGS: 276 List: $33.95  LESS 5% ($1.70)  YOUR PRICE: $32.25

INTRODUCTION TO C++
 Heller, Steve 1997

 Contents: Hardware Fundamentals; Basics of Programming; More Basics; Functional Literacy; Taking Inventory;
 Stringing Along; Down the Garden Path; Stocking Up; Pretty Poly; Typing Up Loose Ends. CD-ROM INCLUDED.
 ACADEMIC PRESS ISBN: 0123390990 PGS: 480 List: $39.95  LESS 5% ($2.00)  YOUR PRICE: $37.95
 
 INTRODUCTION TO C++
 Dench, David & Prior, Brian 1994

 Contents: Program; Input-Output; Control Structures; Function; Class & Object-Oriented Programming; Data
 Structures; Pointers; Summary.
 I T P ISBN: 1850322562 PGS: 239 List: $27.50  LESS 5% ($1.38)  YOUR PRICE: $26.13

Introduction to C++ for Engineers and Scientists
 Etter, Delores M. 1997

 1. An Introduction to Engineering Problem-Solving. 2. Simple C++ Programs. 3. Control Structures and Data Files.
 4. Modular Programming with Functions. 5. One-Dimensional Arrays. 6. Character Data. Appendix A: ASCII
 Character Codes. Complete Solutions to Practice Problems. Index.
 Prentice Hall ISBN: 0132547317 PGS: 162 List: $28.00  LESS 5% ($1.40)  YOUR PRICE: $26.60

LEARN C++ ON THE PC
 Mark, Dave 1994

 Contents: Installing THIN C++; Remembering C; Introducing C++;Object Programming Basics; Derived Classes;
 Operator Overloading; Inside Iostream; C++ Potpourri; Moving On.
 ADDISON-WESLEY ISBN: 0201626225 PGS: 425 List: $39.95  LESS 5% ($2.00)  YOUR PRICE: $37.95

Learning C++
 Graham, Neill 1990

 1 Elements of C++ 2 Classes and Objects 3 Arrays, Pointers, and References 4 Operators and Friends 5 Inheritance:
 Derived Classes 6 Polymorphism: Virtual Functions 7 Case Study: Event-Driven Simulation 8 More about C++
 Appendixes
 McGraw-Hill Higher Education ISBN: 0070239835 PGS: 304 List: $50.94  LESS 5% ($2.55)  YOUR PRICE: $48.39

MASTERING C++: From C to C++ in 2 Weeks
 Gurewich, Nathan & Gurewich, Ori 1994

 Intermediate/advanced how to & reference, with disk. Chapters include: Why C++?; Your First C++ Program;
 Using references in your C++ programs; Using classes in C++; Using dynamic allocation in your C++ programs;
 Static members, friends and arrays of objects; Class hierarchy and polymorphism; Operator overloading; Data
 conversion; Your first Windows application (with the Microsoft C/C++ compiler); More programming with the
 Microsoft Foundation Classes; Your first Borland C++ Windows application; More Borland C++ Windows
 programming; Animation and sound.
 SYBEX ISBN: 0782114199 PGS: 503 List: $27.99  LESS 20% ($5.60)  YOUR PRICE: $22.39

Programming in C++, 2nd Ed.
 Dewhurst, Steven C. & Stark, Kathy T. 1995

 Preface. Preface to the First Edition. Introduction. I. THE C++ LANGUAGE. II. PROGRAMMING PARADIGMS. III.
 BOOK ORGANIZATION. 1. Data Types and Operations. 1.1 Numeric Types. 1.2 Characters. 1.3 Scalar Types with
 Relational and Logical Operators. 1.4 Nonabstract Operations. 1.5 User- Defined Types. 1.6 Pointers and Arrays.
 1.7 References. 1.8 Const Qualified Types. 1.9 Exercises. 2. Procedural Programming. 2.1 Functions as Modules. 2.2
 Functional Decomposition. 2.3 File Organization. 2.4 Structured Programming. 2.5 Overloaded and Inline Functions.
 2.6 Template Functions. 2.7 Arguments and Return Values. 2.8 Exercises. 3. Classes. 3.1 Class Types. 3.2 Data
 Members. 3.3 Function Members. 3.4 Operator Functions. 3.5 Static Members. 3.6 Access Protection and Friends.
 3.7 Initialization and Conversions. 3.8 Pointers to Class Members. 3.9 Exercises. 4. Data Abstraction. 4.1
 Abstraction and Interface. 4.2 Interface and Implementation. 4.3 Control Abstraction. 4.4 Genericity. 4.5 Exercises.
 5. Inheritance. 5.1 Base and Derived Classes. 5.2 Augmentation and Specialization. 5.3 Class Hierarchies. 5.4 Virtual
 Functions. 5.5 Designing for Inheritance. 5.6 Inheritance as a Design Tool. 5.7 Inheritance for Interface Sharing. 5.8
 Multiple Inheritance. 5.9 Virtual Base Classes. 5.10 Exercises. 6. Object-Oriented Programming. 6.1 Designing
 Objects. 6.2 Finding Objects. 6.3 Object Types as Modules. 6.4 Dynamic Object-Oriented Style. 6.5 Exercises. 7.
 Storage Management. 7.1 General-Purpose Storage Management. 7.2 Class-Specific Storage Management. 7.3
 Copy Semantics. 7.4 Temporaries and Efficiency. 7.5 Operator. 7.6 Exercises. 8. Libraries. 8.1 Interface
 Encapsulation. 8.2 Error Interfaces and Exception. 8.3 Client Customizable Libraries. 8.4 Library Extensibility. 8.5
 Exercises. Appendix: Solved Exercises. Index.
 Prentice Hall PTRP ISBN: 0131827189 PGS: 320 List: $42.00  LESS 5% ($2.10)  YOUR PRICE: $39.90

SAMS TEACH YOURSELF C++ IN 10 MINUTES
 Liberty, Jesse 1999

 Contents: What is C++?; What is a C++ Program?; Variables; Statements; The if Statement; Functions; Classes;
 Using Classes Well; Looping; Switch Statements; Pointers; References; Advanced References & Pointers;
 Advanced Functions; Operator Overloading; Arrays; Character Arrays; Inheritance; Issues in Inheritance;
 Polymorphism; Linked Lists; Templates; Exceptions & Error Handling; Next Steps.
 SAMS PUB. ISBN: 067231603X PGS: 246 List: $12.99  LESS 20% ($2.60)  YOUR PRICE: $10.39

Schaum's Outline of Programming With C++
 Hubbard, John 1996

 This Schaum's Outline presents all the fundamental concepts of the current ANSI standard version of the C++
 programming language. This is an object-oriented extension of the very popular C language, and it promises to
 grow in popularity. Many complete programs are included. END
 McGraw-Hill Professional ISBN: 0070308373 PGS: 448 List: $14.95  LESS 5% ($0.75)  YOUR PRICE: $14.20

UP AND RUNNING WITH C++
 GRABA 1998

 The Fundamentals of Object Orientation.- First Steps in C++ Programming: The Basic Structure of a C++ Program.
 Basic Data Types and Variable Declarations. Type Conversions. Constants. Standard Input and Formatted Output.
 Enumerated Types. The Scope of a Variable. The Lifetime of a Variable. Common Operators. Exercises.- Selections
 and Iterations.- The Relational Operators.- Functions and Header files.- Arrays, Pointers and References.- Adding
 Sophistication to Basic I/O.- Classes in C++.- Dynamic Memory Management.- Inheritance.- Polymorphism.- Friend
 Functions and Operator Functions.- File Handling.- Templates.- Appendix A: Exception Handling.- Appendix B:
 C++ Platform Variation: Borland C++. Unix Implementations.- Appendix C: Stream Formatting.- Model Solutions to
 Programming Exercises.
 SPRINGER-VERLAG ISBN: 3540762345 PGS: 304 List: $29.95  LESS 5% ($1.50)  YOUR PRICE: $28.45