close menu
Bookswagon-24x7 online bookstore
close menu
My Account
Home > Computing and Information Technology > Computer programming / software engineering > Programming and scripting languages: general > C++ Without Fear: A Beginner's Guide That Makes You Feel Smart(English)
C++ Without Fear: A Beginner's Guide That Makes You Feel Smart(English)

C++ Without Fear: A Beginner's Guide That Makes You Feel Smart(English)

          
5
4
3
2
1

Out of Stock


Premium quality
Premium quality
Bookswagon upholds the quality by delivering untarnished books. Quality, services and satisfaction are everything for us!
Easy Return
Easy return
Not satisfied with this product! Keep it in original condition and packaging to avail easy return policy.
Certified product
Certified product
First impression is the last impression! Address the book’s certification page, ISBN, publisher’s name, copyright page and print quality.
Secure Checkout
Secure checkout
Security at its finest! Login, browse, purchase and pay, every step is safe and secured.
Money back guarantee
Money-back guarantee:
It’s all about customers! For any kind of bad experience with the product, get your actual amount back after returning the product.
On time delivery
On-time delivery
At your doorstep on time! Get this book delivered without any delay.
Notify me when this book is in stock
Add to Wishlist
X

About the Book

If you've always wanted to learn how to program a computer, or to learn the popular C++ programming language, here's the perfect book and CD to get you started. You'll find everything you need patiently explained and clearly illustrated, from general programming concepts and techniques to the particulars of the C++ language. In no time, you'll be writing your own programs!Yes, programming can be a complex task, and C++ is a language often used by professionals. In fact, many of the coolest games , graphics, and Internet applications are created with C++. But the language, like the monster on the cover, need not be all that fearsome. Broken down to its essentials, and enhanced by simple examples and practical exercises, you'll be amazed at the quick progress you can make. With C++ Without Fear, you willLearn the basics of C++ programmingGet started writing your own programsSee how and why each piece of a program does what it doesCreate useful and reusable program codeUnderstand object-oriented programming--for once explained in simple, down-to-earth termsWhether you wish to learn C++ programming for pleasure--and you'll discover here how much fun it can be--or might be considering a career in programming, this book is an intelligent first step. The accompanying CD-ROM contains a free C++ compiler for writing and running C++ programs, which will let you get started right away. It also includes all the examples and answers to all the exercises in the book. The CD-ROM will run on any PC running MS-DOS or Windows.

Table of Contents:
Preface.     Why a New C++ Book?     What Else Is New about This Book?     Multiple Learning Paths:What Fits You Best.     What If You Already Have a Programming Background?     What Is Not Covered?     Why Should Anyone Start with C++?     To Get Started.     Tips and Tricks: What Do I Watch Out For? Acknowledgments. 1. Your First C++ Programs.     Thinking like a Programmer.     What's Different about C++?     Building a C++ Program.     Installing Your Own C++ Compiler.     Example 1.1. Print a Message.     Advancing to the Next Print Line.     Example 1.2. Print Multiple Lines.     Storing Data: C++ Variables.     Introduction to Data Types.     Example 1.3. Convert Temperatures.     A Word about Variable Names and Keywords.     Chapter 1 Summary. 2. Decisions, Decisions.     But First, a Few Words about Data Types.     Decision Making in Programs.     If and if-else.     Example 2.1. Odd or Even?     Introducing Loops.     Example 2.2. Print 1 to N.     True and False in C++.     The Increment Operator (++).     Statements vs. Expressions.     Introducing Boolean (Short-Circuit) Logic.     Example 2.3. Testing a Person's Age.     Introducing the Math Library.     Example 2.4. Prime-Number Test.     Chapter 2 Summary. 3. The Handy, All-Purpose "for" Statement.     Loops Used for Counting.     Introducing the "for" Loop.     A Wealth of Examples.     Example 3.1. Printing 1 to N with "for".     Statement Blocks with "for".     Declaring Loop Variables on the Fly.     Example 3.2. Prime-Number Test with "for".     Comparative Languages 101: The Basic "for" Statement.     Chapter 3 Summary. 4. Functions: Many Are Called.     The Concept of Function.     Function Calls and the Flow of the Program.     The Basics of Using Functions.     Example 4.1. Triangle-Number Function.     Example 4.2. Prime-Number Function.     Local and Global Variables.     Recursive Functions.     Example 4.3. Greatest Common Factor (GCF).     Example 4.4. Prime Factorization.     Example 4.5. Random-Number Generator.     Chapter 4 Summary. 5. Arrays: We've Got Their Number.     A First Look at C++ Arrays.     Initializing Arrays.     Zero-Based Indexing.     Example 5.1. Print Out Elements.     Example 5.2.How Random Is Random?     Strings and Arrays of Strings.     Example 5.3. Card Dealer #1.     Example 5.4. Card Dealer #2.     Example 5.5. Card Dealer#3.     A Word to the Wise.     2-D Arrays: Into the Matrix.     Chapter 5 Summary. 6. Pointers: Getting a Handle on Data.     The Concept of Pointer.     Declaring and Using Pointers.     Example 6.1. The Double-It Function.     Swap: Another Function Using Pointers.     Example 6.2.Array Sorter.     Pointer Arithmetic.     Pointers and Array Processing.     Example 6.3. Zero Out an Array.     Chapter 6 Summary. 7. Strings: Analyzing the Text.     Text Storage on the Computer.     It Don't Mean a Thing If It Ain't Got That String.     String-Manipulation Functions.     Example 7.1. Building Strings.     Reading String Input.     Example 7.2. Get a Number.     Example 7.3. Convert to Uppercase.     Individual Characters vs. Strings.     Example 7.4.Analyze Input.     The New C++ String Class.     Example 7.5. Building Strings with the string Type.     Other Operations on the string Type.     Chapter 7 Summary. 8. Files: Electronic Storage.     Introducing File-Stream Objects.     How to Refer to Disk Files.     Example 8.1.Write Text to a File.     Example 8.2. Display a Text File.     Text Files vs. "Binary" Files.     Introducing Binary Operations.     Example 8.3. Random-Access Write.     Example 8.4. Random-Access Read.     Chapter 8 Summary. 9. Some Advanced Programming Techniques.     Command-Line Arguments.     Example 9.1. Display File from Command Line.     Function Overloading.     Example 9.2. Printing Different Types of Arrays.     The do-while Loop.     The switch-case Statement.     Multiple Modules.     Exception Handling.     Example 9.3. Exception Handling with GCF.     Chapter 9 Summary. 10. Getting Yourself Object Oriented.     Why Get Object Oriented?     A String Parser.     Objects vs. Classes.     Another Example: The Fraction Class.     Object Creation and Destruction.     Inheritance, or Subclassing.     Creating Shared Interfaces.     Polymorphism: True Object Independence.     Polymorphism and Virtual Functions.     What about Reusability?     Chapter 10 Summary. 11. The Fraction Class.     Point: A Simple Class.     Private:Members Only (Protecting the Data).     Example 11.1. Testing the Point Class.     Introducing the Fraction Class.     Inline Functions.     Find the Greatest Common Factor.     Find the Lowest Common Multiple.     Example 11.2. Fraction Support Functions.     Example 11.3. Testing the Fraction Class.     Example 11.4. Fraction Arithmetic: add and mult.     Chapter 11 Summary. 12. Constructors: If You Build It….     Introducing Constructors.     Multiple Constructors (Overloading).     The Default Constructor…and a Warning.     Example 12.1. Point Class Constructors.     Example 12.2. Fraction Class Constructors.     Reference Variables and Arguments (&).     The Copy Constructor.     Example 12.3. Fraction Class Copy Constructor.     Chapter 12 Summary. 13. Operator Functions: Doing It with Class.     Introducing Class Operator Functions.     Operator Functions As Global Functions.     Improve Efficiency with References.     Example 13.1. Point Class Operators.     Example 13.2. Fraction Class Operators.     Working with Other Types.     The Class Assignment Function (=).     The Test-for-Equality Function (==).     A Class "Print" Function.     Example 13.3. The Completed Fraction Class.     Chapter 13 Summary. 14. What's "new": The StringParser Class.     The "new"Operator.     Objects and "new".     Allocating Array Data.     Example 14.1. Dynamic Memory in Action.     Design for a Parser (Lexical Analyzer).     Example 14.2. The StringParser Class.     Chapter 14 Summary. 15. What's "this": The String Class.     Introducing the String Class.     Introducing Class Destructors.     Example 15.1. A Simple String Class.     "Deep" Copying and the Copy Constructor.     The "this" Keyword.     Revisiting the Assignment Operator.     Writing a Concatenation Function.     Example 15.2. The Complete String Class.     Chapter 15 Summary. 16. Inheritance: What a Legacy.     Subclassing for Fun and Profit.     Example 16.1. The FloatFraction Class.     Problems with the FloatFraction Class.     Example 16.2. The Completed FloatFraction Class.     Example 16.3. The ProperFraction Class.     Private and Protected Members.     Example 16.4. Contained Members: FractionUnits.     Chapter 16 Summary. 17. Polymorphism: Object Independence.     A Different Approach to the FloatFraction Class.     Virtual Functions to the Rescue!     Example 17.1. The Revised FloatFraction Class.     "Pure Virtual" and Other Arcane Matters.     Abstract Classes and Interfaces.     Why cout Is Not Truly Polymorphic.     Example 17.2. True Polymorphism: The Printable Class.     A Final Word (or Two).     A Final Final Word.     Chapter 17 Summary. Appendix A. C++ Operators. Appendix B. Intrinsic Data Types. Appendix C. C++ Syntax Summary. Appendix D. ASCII Codes. Appendix E. Common Library Functions. Appendix F. Glossary of Terms. Index.


Best Sellers



Product Details
  • ISBN-13: 9780321246950
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Prentice Hall
  • Depth: 0.25
  • Height: 180 mm
  • No of Pages: 528
  • Spine Width: 25 mm
  • Weight: 760 gr
  • ISBN-10: 0321246950
  • Publisher Date: 23 Sep 2004
  • Binding: SA
  • Edition: PAP/CDR
  • Language: English
  • Series Title: English
  • Sub Title: A Beginner's Guide That Makes You Feel Smart
  • Width: 234 mm


Similar Products

How would you rate your experience shopping for books on Bookswagon?

Add Photo
Add Photo

Customer Reviews

REVIEWS           
Click Here To Be The First to Review this Product
C++ Without Fear: A Beginner's Guide That Makes You Feel Smart(English)
Pearson Education (US) -
C++ Without Fear: A Beginner's Guide That Makes You Feel Smart(English)
Writing guidlines
We want to publish your review, so please:
  • keep your review on the product. Review's that defame author's character will be rejected.
  • Keep your review focused on the product.
  • Avoid writing about customer service. contact us instead if you have issue requiring immediate attention.
  • Refrain from mentioning competitors or the specific price you paid for the product.
  • Do not include any personally identifiable information, such as full names.

C++ Without Fear: A Beginner's Guide That Makes You Feel Smart(English)

Required fields are marked with *

Review Title*
Review
    Add Photo Add up to 6 photos
    Would you recommend this product to a friend?
    Tag this Book
    Read more
    Does your review contain spoilers?
    What type of reader best describes you?
    I agree to the terms & conditions
    You may receive emails regarding this submission. Any emails will include the ability to opt-out of future communications.

    CUSTOMER RATINGS AND REVIEWS AND QUESTIONS AND ANSWERS TERMS OF USE

    These Terms of Use govern your conduct associated with the Customer Ratings and Reviews and/or Questions and Answers service offered by Bookswagon (the "CRR Service").


    By submitting any content to Bookswagon, you guarantee that:
    • You are the sole author and owner of the intellectual property rights in the content;
    • All "moral rights" that you may have in such content have been voluntarily waived by you;
    • All content that you post is accurate;
    • You are at least 13 years old;
    • Use of the content you supply does not violate these Terms of Use and will not cause injury to any person or entity.
    You further agree that you may not submit any content:
    • That is known by you to be false, inaccurate or misleading;
    • That infringes any third party's copyright, patent, trademark, trade secret or other proprietary rights or rights of publicity or privacy;
    • That violates any law, statute, ordinance or regulation (including, but not limited to, those governing, consumer protection, unfair competition, anti-discrimination or false advertising);
    • That is, or may reasonably be considered to be, defamatory, libelous, hateful, racially or religiously biased or offensive, unlawfully threatening or unlawfully harassing to any individual, partnership or corporation;
    • For which you were compensated or granted any consideration by any unapproved third party;
    • That includes any information that references other websites, addresses, email addresses, contact information or phone numbers;
    • That contains any computer viruses, worms or other potentially damaging computer programs or files.
    You agree to indemnify and hold Bookswagon (and its officers, directors, agents, subsidiaries, joint ventures, employees and third-party service providers, including but not limited to Bazaarvoice, Inc.), harmless from all claims, demands, and damages (actual and consequential) of every kind and nature, known and unknown including reasonable attorneys' fees, arising out of a breach of your representations and warranties set forth above, or your violation of any law or the rights of a third party.


    For any content that you submit, you grant Bookswagon a perpetual, irrevocable, royalty-free, transferable right and license to use, copy, modify, delete in its entirety, adapt, publish, translate, create derivative works from and/or sell, transfer, and/or distribute such content and/or incorporate such content into any form, medium or technology throughout the world without compensation to you. Additionally,  Bookswagon may transfer or share any personal information that you submit with its third-party service providers, including but not limited to Bazaarvoice, Inc. in accordance with  Privacy Policy


    All content that you submit may be used at Bookswagon's sole discretion. Bookswagon reserves the right to change, condense, withhold publication, remove or delete any content on Bookswagon's website that Bookswagon deems, in its sole discretion, to violate the content guidelines or any other provision of these Terms of Use.  Bookswagon does not guarantee that you will have any recourse through Bookswagon to edit or delete any content you have submitted. Ratings and written comments are generally posted within two to four business days. However, Bookswagon reserves the right to remove or to refuse to post any submission to the extent authorized by law. You acknowledge that you, not Bookswagon, are responsible for the contents of your submission. None of the content that you submit shall be subject to any obligation of confidence on the part of Bookswagon, its agents, subsidiaries, affiliates, partners or third party service providers (including but not limited to Bazaarvoice, Inc.)and their respective directors, officers and employees.

    Accept

    New Arrivals



    Inspired by your browsing history


    Your review has been submitted!

    You've already reviewed this product!
    ASK VIDYA