Buy Used
Used - Good See details
$3.54 & eligible for FREE Super Saver Shipping on orders over $25. Details

or
Sign in to turn on 1-Click ordering.
 
   
Have one to sell? Sell yours here
C/C++ Programmer's Reference (Programmers Pocket References)
 
 
Tell the Publisher!
I'd like to read this book on Kindle

Don't have a Kindle? Get your Kindle here, or download a FREE Kindle Reading App.

C/C++ Programmer's Reference (Programmers Pocket References) [Paperback]

Herbert Schildt (Author)
4.2 out of 5 stars  See all reviews (37 customer reviews)


Available from these sellers.


Textbook Student FREE Two-Day Shipping for students on millions of items. Learn more

Formats

Amazon Price New from Used from
Paperback $18.38  
Paperback, July 10, 1997 --  
There is a newer edition of this item:
C/C++ Programmer's Reference, Third Edition C/C++ Programmer's Reference, Third Edition 4.2 out of 5 stars (37)
Out of Print--Limited Availability

Book Description

0078823676 978-0078823671 July 10, 1997 First Edition
This guide provides an annotated list of alphabetical keywords, functions, and class libraries. It is designed as a reference tool for both the experienced C/C++ programmer as well as for the beginner. C is the most popular programming language in the world today, and is used by programmers for virtually all programming tasks. C++ is an extended and enhanced subset of C that supports object-oriented programming and dramatically increases the power of C. Because C++ is built upon C, programmers first master C and then move on to C++. C++ contains and supports and entire C language, in addition to a set of object-oriented extensions. Because C++ is built upon the foundations of C, programmers cannot learn C++ without learning the basics of C first. The book contains the most up-to-date functions, keywords and expert tips; presents examples of when and why to use various syntax; and should be useful to both new and experienced programmers who need a reference for C and C++. Herbert Schildt is the author of "C: The Complete Reference", "Teach Yourself C++" and "C++: The Complete Reference".


Editorial Reviews

From the Back Cover

Here's a handy desktop reference that won't merely sit on your desk! It will be in your hands all day--offering quick, easy access to succinct explanations of the essential C/C++ programming syntax, keywords, commands, functions, and class libraries. Written by Herb Schildt, today's number one programming author and internationally known C/C++ expert, this vital memory jogger holds a complete listing of essential C/C++ programming information in an easy-to-use, well organized format. At a glance, you'll find critical C/C++ definitions illuminated in the clear and readable prose that has made Schildt famous. Whether you're a beginner or an experienced Programmer, the C/C++ Programmer's Reference is one programming aid you won't want to be without. Jump to essential C/C++ syntax, keywords, commands, and functions quickly! Written by internationally known C/C++ expert Herb Schildt. Packed with programming tips to speed your work. ABOUT THE AUTHOR Herbert Schildt is a world-renowned programming author. His books have sold more than 1.5 million copies worldwide and have have been translated into all major foreign languages. He is the author of many best-sellers, including C: The Complete Reference, now in its third edition; Teach Yourself C++, C++: The Complete Reference, and C++ From the Ground Up.

About the Author

Herb Schildt (Mahomet, IL) is a leading authority on C and C++ and a best-selling author whose books have sold more than 2 million copies. His acclaimed C and C++ books include Teach Yourself C, C++ from the Ground Up, C++: The Complete Reference, Java Programmer's Reference, STL Programming from the Ground Up, Windows 98 Programming from the Ground Up, and co-author of C/C++ Annotated Archives.

Product Details

  • Paperback: 344 pages
  • Publisher: Mcgraw-Hill Osborne Media; First Edition edition (July 10, 1997)
  • Language: English
  • ISBN-10: 0078823676
  • ISBN-13: 978-0078823671
  • Product Dimensions: 8.4 x 5.4 x 0.9 inches
  • Shipping Weight: 1 pounds
  • Average Customer Review: 4.2 out of 5 stars  See all reviews (37 customer reviews)
  • Amazon Best Sellers Rank: #3,280,711 in Books (See Top 100 in Books)

More About the Author

Discover books, learn about writers, read author blogs, and more.

 

Customer Reviews

37 Reviews
5 star:
 (23)
4 star:
 (6)
3 star:
 (4)
2 star:    (0)
1 star:
 (4)
 
 
 
 
 
Average Customer Review
4.2 out of 5 stars (37 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

10 of 10 people found the following review helpful:
5.0 out of 5 stars FANTASTIC REFERENCE!!!, September 9, 2000
I agree, the first guy was clueless. This is a fantastic reference. The key word here is reference; this book does not teach you C++, nor does it try to. It is like a dictionary of the language. This is the book to look stuff up in when writing real code.

I like the style of this book much better than that of the "In a Nutshell" reference books, so I plan to get the Java version of this book ("Java 2 Programmer's Reference") instead of "Java in a Nutshell". Stuff is much easier to find.

Most compilers come with their own reference on disk, but they usually mix platform dependent stuff with platform independent stuff. I need my code to be as portable as possible, so I prefer to look stuff up in here.

It's cheap. It's great. Buy it.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


6 of 6 people found the following review helpful:
5.0 out of 5 stars Damn close to perfect reference book, December 29, 2003
By 
dondo (Issaquah, WA USA) - See all my reviews
As an experienced programmer, this book is simply ideal for me. Whether to remind me of the ordering of parameters to functions or to recall the subtleties of using the STL, it's all there.

The book is thoroughly cross-referenced, has an excellent index, and is well organized -- it can be meaningfully browsed end to end, an extraordinary accomplishment. Mr. Schildt describes each entry concisely, thoroughly, and in a completely readable way. Consider for example the following description of the "static" keyword:
"static is a data type modifier that creates permanent storage for the local variable that it precedes. This enables the specified variable to maintain its value between function calls, for example.
"static can also be used to declare global variables. In this case, it limits the scope of the variable that it modifies to the file in which it is declared.
"In C++, when static is used on a class data member, it causes only one copy of that member to be shared by all objects of its class."
That is without compare the cleanest description of the keyword I've ever seen. This is a typical entry; it's all there, with enough detail that I recall exactly what is going on.

I am amused by the various bad reviews which complain that this is not a "complete" reference. It is exactly the judicious editing and concision which makes this so useful to me. My only complaint is in fact the opposite; that in some cases it goes into too much detail. There are sporadic "Programming Tips" scattered throughout, and I find each of these to be a waste of time in a reference text. These would seem more appropriate in an introductory text.

In short, this is an extremely useful reference for the experienced developer.

Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


5 of 5 people found the following review helpful:
5.0 out of 5 stars The previous guy is clueless, July 30, 2000
By 
Kyle Tuskey (freehold, new jersey USA) - See all my reviews
This book is immensely helpful for anyone with prior programming experience that wants to quickly learn c/c++. The layout of the book is great, and the way they differentiate c from c++ is very simply stated. They also quickly explain the basic concepts in c/c++ very well. They give it to you straight, and don't treat you as clueless like most books do. I strongly recommend it.. but only if you already know programming.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No

Share your thoughts with other customers: Create your own review
 
 
 
Most Recent Customer Reviews











Only search this product's reviews



Inside This Book (learn more)
Browse and search another edition of this book.
First Sentence:
C and C++ offer the programmer a rich assortment of built-in data types. Read the first page
Key Phrases - Statistically Improbable Phrases (SIPs): (learn more)
long double arg, invoking bitset, float complex arg, long double num, first form constructs, second form constructs, third form constructs, invoking string, size type len, streamsize num, const bitset, float arg, associated input stream, associated output stream, file position indicator, arg rounded, int radix, const reverse iterator rbegin, const reverse iterator rend, function returns nonzero, const iterator end, following member functions, dynamic allocation functions, iostream library, float num
Key Phrases - Capitalized Phrases (CAPs): (learn more)
Programming Tip, Member Description, Output Turns, Description Returns, Name Meaning, Standard Libraries, Precedence Operators Highest, Operator Meaning, The Complex Library
New!
Books on Related Topics | Concordance | Text Stats
Browse Sample Pages:
Front Cover | Table of Contents | First Pages | Index | Back Cover | Surprise Me!
Search Inside This Book:

Citations (learn more)
This book cites 3 books:
 
1 book cites this book:



What Other Items Do Customers Buy After Viewing This Item?


Tags Customers Associate with This Product

 (What's this?)
Click on a tag to find related items, discussions, and people.
 

Your tags: Add your first tag
 

Sell a Digital Version of This Book in the Kindle Store

If you are a publisher or author and hold the digital rights to a book, you can sell a digital version of it in our Kindle Store. Learn more

Customer Discussions

This product's forum
Discussion Replies Latest Post
No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
 


Active discussions in related forums
Search Customer Discussions
Search all Amazon discussions
   
Related forums





Look for Similar Items by Category


Look for Similar Items by Subject