or
Sign in to turn on 1-Click ordering.
or
Amazon Prime Free Trial required. Sign up when you check out. Learn More
More Buying Choices
Have one to sell? Sell yours here
C/C++ Programmer's Reference
 
 
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 [Paperback]

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

List Price: $21.95
Price: $18.38 & eligible for FREE Super Saver Shipping on orders over $25. Details
You Save: $3.57 (16%)
  Special Offers Available
o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o o
In Stock.
Ships from and sold by Amazon.com. Gift-wrap available.
Want it delivered Wednesday, February 1? Choose One-Day Shipping at checkout. Details
Textbook Student FREE Two-Day Shipping for Students. Learn more

Formats

Amazon Price New from Used from
Paperback $18.38  

Book Description

0072127066 978-0072127065 June 27, 2000 2
Essential programming tips at your fingertips! This handy programmer's reference provides quick access to syntax, functions, classes, methods, as well as the Standard Template Library (STL). The book covers ANSI/ISO Standard C and C++, including the new C99 standard.

Special Offers and Product Promotions

  • Buy $50 in qualifying physical textbooks, get $5 in Amazon MP3 Credit. Here's how (restrictions apply)

Frequently Bought Together

C/C++ Programmer's Reference + C++: The Complete Reference, 4th Edition + C: The Complete Reference, 4th Ed.
Price For All Three: $78.34

Some of these items ship sooner than the others. Show details

Buy the selected items together
  • In Stock.
    Ships from and sold by Amazon.com.
    Eligible for FREE Super Saver Shipping on orders over $25. Details

  • C++: The Complete Reference, 4th Edition $33.38

    Usually ships within 7 to 13 days.
    Ships from and sold by Amazon.com.
    This item ships for FREE with Super Saver Shipping. Details

  • C: The Complete Reference, 4th Ed. $26.58

    In Stock.
    Ships from and sold by Amazon.com.
    This item ships for FREE with Super Saver Shipping. Details



Editorial Reviews

From the Back Cover

C/C++ Essentials and Syntax on One Handy Reference!

Get a wealth of core C/C++ information in this well-organized fingertip reference. Herbert Schildt, the world's leading programming author, has revised his perennial best-seller to reflect the latest information on ANSI/ISO Standard C and C++, including C99, the new standard for C. Inside, you'll find clear explanations of all C and C++ programming syntax, keywords, commands, functions, and class libraries. No programmer can remember the precise syntax of every C/C++ element--now you don't have to because it's all here. With this quick-access guide on hand, you'll be able to implement efficient solutions to all of your programming challenges rapidly.

  • Essential C/C++ syntax, keywords, classes, commands, and functions
  • Full coverage of both C and C++, including the new C99 Standard
  • Packed with programming tips to help speed your work

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: 416 pages
  • Publisher: McGraw-Hill Professional; 2 edition (June 27, 2000)
  • Language: English
  • ISBN-10: 0072127066
  • ISBN-13: 978-0072127065
  • Product Dimensions: 8.4 x 5.5 x 1.1 inches
  • Shipping Weight: 1.1 pounds (View shipping rates and policies)
  • Average Customer Review: 4.2 out of 5 stars  See all reviews (37 customer reviews)
  • Amazon Best Sellers Rank: #229,897 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
This review is from: C/C++ Programmer's Reference (Paperback)
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
This review is from: C/C++ Programmer's Reference (Paperback)
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 review is from: C/C++ Programmer's Reference (Paperback)
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)
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
Discussion Replies Latest Post
Is Space Something? Is Time Something? Or are they Nothing? When Did Space First Begun? When Did Time First Begin? 274 48 seconds ago
Abiogenesis be Manned- There is no evidence for life having started naturally on Earth. 7 7 minutes ago
Creationists are trying to rewrite the Laws of Thermodynamics! 796 9 minutes ago
Why are people here so scientifically illiterate 6758 11 minutes ago
Are there scientific proofs to support a 9-11 coverup? 22 24 minutes ago
Global warming is nothing but a hoax and a scare tactic 8226 1 hour ago
Never Again 30 6 hours ago
I just received a "very good" textbook without its disc - what are your thoughts? 168 3 days ago
Search Customer Discussions
Search all Amazon discussions
   
Related forums





Look for Similar Items by Category


Look for Similar Items by Subject