Our website is currently undergoing technical upgrades to serve you better. We’ll be back online shortly.
13%
The C++ Programmer's NoteBook: An Illustrated Quick Reference

The C++ Programmer's NoteBook: An Illustrated Quick Reference

          
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

About the Book

52594-9 "Show me the code!" The easy, visual approach to C++. Finally, there's a book that presents C++ the way you want to learn it --from real, working code! C++ Programmer's Notebook is so visual, so sensible, so convenient, you'll wonder why nobody thought of it before. See for yourself! *The code comes first! Start by looking at proven code samples you can just copy and run! *Everything's highlighted in boldface type, so you instantly see the basic C++ syntax, and what you have to add to it. *All the rules are neatly summarized in a convenient table! And if you want to know more, it's right there for you on the adjacent left-hand page. C++ Programmer's Notebook isn't just convenient: it's comprehensive. And it's carefully, logically organized to build your expertise one step at a time.It covers all the C++ concepts you need to know, including: *Variables *Arrays *Overloading *Files and Streams *Operators *Strings *Inheritance *Memory Management *Expressions *Program Control *Pointers *Storing/Searching for Data *Structures *Objects *Virtual Functions *Data Structures *Functions *Classes *I/O *Templates There's even a programmer's checklist for writing efficient, reliable code. It's a complete course in C++ without the pain! Whether you're a professional programmer learning C++, a C++ programmer needing a quick reference, or a student, this is the C++ book you'll use every day!

Table of Contents:
Preface. 1. Working with Variables. Naming Variables. Using Variables. Integer Variables. Character Variables. Escape Sequences. Floating-Point Variables. Inside Exponential Notation. Signed and Unsigned Variables. Data Type Conversion. Assigning Values to Variables. Local Variables. Global Variables. Local Variables vs. Global Variables. Storage Specifiers. static. Register. auto. Storage Specifier Rules. 2. Working with Operators and Expressions. Expressions. Arithmetic Operators. The +=, -=, *=, /= Operators. The % Operator. The ++, -- Operators. Relational Operators. The <=, ==, != Operators. Logical Operators. Bitwise Operators. Bitwise AND. Bitwise OR. Bitwise XOR (exclusive OR). Bitwise NOT. The Shift Left Operator. The Shift Right Operator. The ? Operator (if...the...else). The & and * Pointer Operators. A Brief Look at Pointers. The Precedence Table. Working with Expressions. 3. Working with Arrays and Strings. Arrays and Strings. Other Ways to Assign Values to an Array. Loop. Multidimensional Arrays. Other Ways to Assign Values to a Multidimenional Array. Loop. Strings. Copying a String to Another String scanf(). Reading a String from the Keyboard gets(). Another Way to Read a String from the Keyboard scanf(). Still Another Way to Read a String from the Keyboard with the Extraction Operator. Comparing Two Strings strcmp(). Displaying a String printf(). Another Way to Display a String puts(). Still Another Way to Display a String with the Insertion Operator. Concatenating Strings strcat(). Determining the Length of a String strlen(). Determining the Length of a Substring strcspn(). Another Way to Determine the Length of a Substring strspn(). Concatenating a Substring strncat(). Comparing Substrings strncmp(). Locating a Character within a String strpbrk(). Locating the First Occurrence of a Substring in a String strstr(). Dividing a String into Several Substrings strtok(). 4. Working with Structures. Structures. A Structure at Work. Running the Sample Program. Another Way to Declare an Instance. Assigning Values to Structure Members. Multiple Instances. Assigning Values to Multiple Instances. Structures within Structures. Passing Elements of a Structure to a Function. Passing by Address. Passing the Value of a Structure to a Function. Passing the Address of a Structure to a Function. Unions. Other Ways to Declare an Instance of a Union. Enumerations. Typedefine. 5. Working with Functions. Anatomy of a C++ Function. The main( ) Functions. How to Use a function. Passing Arguments. Passing Multiple Arguments. Passing Arguments to the main( ) Function. Returning Values. Functions Calling Functions. Building a Program Using Functions. Program Statements. White Space Characters. Preprocessor Directives. More Preprocessor Directives. #define with Arguments. #if, #else, #elif, #endif. #ifdef, #ifndef, #undef. #line, #error and #pragma. Making a C++ Program. 6. Working with Program Control. Program Control Statements. If. if ... else. The ? Operator. Nested if. if ... elseif. Multiple Conditions. switch ... case. Tricks of the Trade. for loop. Decrementing the for Loop Counter. Another Way to Use a for Loop. A Nested for Loop. An Infinite Loop. while Loop. do. . . . while Loop. Break. exit( ). Continue. Goto. 7. Working with Objects and Classes. Classes. Declaring an Instance of a Class. Hiding Data Using the Access Specifier. The Constructor. Overloading the Constructor. The Destructor. Defining a Function Member Outside the Class Definition. 8. Working with Overloading. Overloading. Overloading a Function Using Different Data Types. Overloading a Unary Operator. Overloading a Binary Operator. Operators that Can and Cannot be Overloaded. 9. Working with Inheritance. Inheritance. Access Specifiers. More About Inheritance. Multiply Inheritance. Ambiguity in Multiple Inheritance. Containership Class. Levels of Inheritance. 10. Working with Pointers. Pointers. Using Pointers in Expressions. Incrementing Pointers. Decrementing Pointers. Pointer Math. Tricks of the Trade. An Array of Pointers. Pointers-to-Pointers. A Pointer-to-a-Function. Tricks of the Trade. 11. Working with Virtual Functions. Creating a Virtual Function. Without Redefining a Virtual Function. Creating a Pure Virtual Function. More about Virtual Functions. Friend Functions. Creating a Friend Function from a Function Member. Forward Reference of a Class. 12. Working with Keyboard Input—Screen Output. Keyboard Input/Screen Output. Reading a Character from the Keyboard without Echo getch(). Display a Character on the Screen putchar(). Reading a String from the Keyboard with Less Overhead gets(). Reading a String from the Keyboard with Greater Control scanf(). Reading a String scanf(). Limiting the Number of Characters Read from the Keyboard. Receiving More than One Value at the Same Time. Creating Your Own Separator. Another Way to Create Your Own Separator. Displaying a String on the Screen with Less Overhead puts(). Displaying a String on the Screen with Greater Control printf(). Displaying a String printf(). Displaying an Integer printf(). Padding the Data with Spaces. Specifying the Minimum and Maximum Width of Data. Adding Padding to the End of the Data. Specifying the Number of Decimal Places. Displaying a String Constant in C++ cout<<. Displaying a String Variable Using cout. Displaying a Non-String Variable Using cout. Displaying Strings And Non-Strings Together Using cout. Reading a String from the Keyboard Using C++ cin>>. Manipulators. 13. Working with Files and Streams. File Input/Output. Mode Specifiers for the fopen() Function. Closing a File. Writing a Character to a File putc(). Reading a Character from a File getc(). Tricks of the Trade. Writing a String to a File fputs(). Reading a String from a File fgets(). Writing an Integer to a File putw(). Reading an Integer from a File getw(). Writing a Block of Data to a File fwrite(). Reading a Block of Data from a File fread(). Creating a Database File. Reading a Record. Writing Various Data Types to a File fprintf(). Using the fprintf() Function. Reading Various Data Types from a File fscanf(). Using the fscanf() Function. Moving to Specific Locations in a File fseek(). Returning to the Beginning of a File rewind(). Deleting a File unlink(). Using a File in C++. Writing Information to a File Using C++. Reading a String from a File Using C++. Writing a Single Character to a File Using C++. Reading a Single Character from a File Using C++. Writing an Object to a File. Reading an Object from a File. Specifying the File Mode in C++. 14. Working with Memory Management. Computer Memory. Storing Data on the Stack. Storing Data on the Heap. Storing an Array of Objects on the Heap. Reallocating Heap Memory. Another Way of Storing Data on the Heap. Using a Dynamic Array. 15. Working with Storing and Searching Data. The Bubble Sort. Inside the Bubble Sort. The Linear Search. The Binary Search. A Close Look at the Binary Search Routine. 16. Working with Data Structures. Linked Lists. Adding a Node to a Linked List. A Closer Look at Adding a Node. Deleting a Node from a Linked List. A Closer Look at Deleting a Node. Stacks. A Closer Look at the push() Function. The pop() Function. A Closer Look at the pop() Function. Queues. A Closer Look at the enterqueue() Function. The exitqueue() Function. A Closer Look at the exitqueue() Function. 17. Working with Templates. Templates. Templates with Multiple Parameters. Class Template. Programmer's Checklist. General. Keywords, Variables, Arrays, and Constants. Expressions and Operators. Program Control. Functions. Classes. Input/Output. Index.


Best Sellers


Product Details
  • ISBN-13: 9780135259405
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Prentice Hall
  • Height: 234 mm
  • No of Pages: 480
  • Spine Width: 18 mm
  • Weight: 668 gr
  • ISBN-10: 0135259401
  • Publisher Date: 11 Nov 1997
  • Binding: Paperback
  • Language: English
  • Returnable: Y
  • Sub Title: An Illustrated Quick Reference
  • Width: 177 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
The C++ Programmer's NoteBook: An Illustrated Quick Reference
Pearson Education (US) -
The C++ Programmer's NoteBook: An Illustrated Quick Reference
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.

The C++ Programmer's NoteBook: An Illustrated Quick Reference

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