4%
C for Java Programmers

C for Java Programmers

          
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

C for Java Programmers takes a unique approach to teaching C to readers already familiar with Java: it presents C by construct, so readers learn the inner workings of the language, and also by problem, so readers become aware of what the language can accomplish. Throughout, the author takes advantage of readers' prior programming experience in the Java environment by making connections between the two languages to relate how different functionalities and tools can arrive at the same solution. As such, topics like explicit storage allocation, "unsafe" pointers, and coding and debugging discipline become increasingly important. Sections on things to remember and common errors also reinforce knowledge of C language features, and numerous executable sample programs and end-of-chapter exercises enhance understanding.

Table of Contents:
Preface. 1. Introduction. Preview. About C. Object-Oriented versus Procedural Programming. A Brief Comparison of C and Java. Why is C Still Useful? Development Process. Compilation, Linking, and Preprocessing. Portability, Efficiency, and Correctness. Programming Style. Programming with Idioms. 2. Example of a C Program. General Documentation. Run-Time Libraries and Function Declarations. Global Definitions. User-Defined Functions. The main Function. Sample Output. 3. Lexical Structure, Primitive Data Types, and Terminal I/0. Preview. Lexical Structure. Alphabet. Comments. Trigraphs. Line Structure. Tokens. Identifiers. Keywords. Primitive Data Types and Declarations. Primitive Data Types. Declarations of Variables and Constants. Assignment. The main Program. Constants. Integer Constants. Floating-Point Constants. Character Constants. String Constants. Expressions. Terminal Input/Output. Single Character I/O. Formatted I/O. Type Conversions. sizeof. Conversions. Type Synonyms: typedef. List of Common Errors. List of Idioms. List of Programming Style Guidelines. List of Portability Guidelines. Exercises. 4. Control Structures. Preview. Logical Expressions. Control Statements and Their Idiomatic Use. Testing and Debugging. Loops. List of Common Errors. List of Idioms. List of Programming Style Guidelines. Exercises. 5. Text Files. Preview. Introduction. File Handles. Opening and Closing Files. Basic File I/O Operations. Testing for End-of-Line and End-of-File. Handling Errors. List of Common Errors. List of Idioms. Exercises. 6. The C Preprocessor. Preview. Introduction. Macros. Parameterless Macros. Predefined Macros. Macros with Parameters. Undefining and Redefining Macros. File Inclusion. Conditional Compilation. Debugging. Header Files: Part 1. Portability. Line Numbering. List of Common Errors. List of Idioms. List of Programming Style Guidelines. Exercises. 7. Functions, Scope, and Introduction to Module-Based Programming. Preview. Functions and Their Documentation. Declarations and Definitions. Functions and Void. Type Conversion. The exit Function. Scope. Blocks. Global Variables. Storage Classes and Lifetime. Initialization of Variables. Module-Based Programming: Part 1. Design for Change. Sharing Functions and Variables: extern. Linkage and the static Keyword. Header Files: Part 2. Encapsulation. Using Modules. Types of Modules. Overloading Functions: Variable Number of Arguments. List of Common Errors. List of Idioms. List of Programming Style Guidelines. Exercises. 8. Pointers and Their Applications. Preview. Stack and Heap Based Memory. Basic Terminology. Declaring and Casting Pointers. Dereferencing Pointers and the Address Operator. Pointer Assignments. Qualified Pointers. Generic Pointers and NULL. Pointer Conversions. Standard Type Definitions. Heap Memory Management. Memory Allocation. Memory Deallocation. Pointer Arithmetic. The Sum of a Pointer and an Integer. Difference of a Pointer and an Integer. Pointer Comparison: , , , =, ==, !=. Pointer Subtraction. Working with Memory Blocks. File I/O for Memory Blocks: Binary Files. Current File Position. Binary Reading and Writing. Pointers and Functions. Pointer Parameters. Protecting Return Values and Parameter Values: const. The Dangling Reference Problem. Overriding Functions: Pointers to Functions and Functions as Parameters. Reusability of Functions: Generic Pointers. Declarators: Part 1. Pointers to Blocks Containing Pointers. Module-Based Programming: Part 2. Basic Terminology. Homogenous Collection of Objects. Pure Modules: Enumeration. Homogenous Concrete Modules. Heterogeneous Data Structures. List of Common Errors. List of Idioms. List of Programming Style Guidelines. List of Portability Guidelines. Exercises. 9. Strings. Preview. Character Processing Functions. Strings in C. Definitions of Strings and String Constants. Strings, Parameters, and Return Values. Formatted String I/0. Line-Oriented String I/0. C String Operations. Length. Copying. Comparisons. Search. Processing Tokens. String-to-Number Conversions. Standard Error Handling. Module for String Tokenizing. Main Function's Arguments. List of Common Errors. List of Idioms. Exercises. 10. Arrays. Preview. Single-Dimensional Arrays. Arrays as Parameters. Array Initialization and Storage. Declarators: Part 2. Multi-Dimensional Arrays. Dynamic Array Module (with Preconditions). Testing Preconditions. Interface. Application. Implementation. List of Common Errors. List of Idioms. List of Programming Style Guidelines. Exercises. 11. Structures and Their Applications. Preview. Structures and Classes. Declaring and Using Structures. Nested Structures and Incomplete Definitions. Assigning and Comparing Structures. Structures and Other Constructs. Structures and Pointers. Structures and Functions. Blocks of Structures and Pointers to Structures. Structures and Arrays. Initialization of Structures. Structures and Pointers to Functions. Structures and Header Files. Binary Files: Part 2. Introduction to Linked Lists. Module-Based Programming: Part 3. Implementation of Opaque Types. Enumerations. Generic Dynamic Array Module with Enumerations. List Module. List of Common Errors. List of Idioms. List of Programming Style Guidelines. List of Portability Guidelines. Exercises. 12. Enumerated Types and Unions. Preview. Enumerated Types. Unions. List of Idioms. List of Programming Style Guidelines. Exercises. 13. Bitwise Operations and Bit Fields. Preview. Bitwise Operations. Bit Fields. List of Portability Guidelines. Exercises. 14. Module-Based Programming: Finale. Preview. Error Handling. Long Jumps. Exception Handling. Characterization of Modules. Shallow and Deep Interfaces. Lists. Conclusion. Exercises. Appendix A: Precedence and Associativity Tables. Appendix B: Summary of All Standard Library Functions. B.1 Formatted Input. B.2 Formatted Output. Appendix C: Glossary. Appendix D: The Complete List of Common Errors. Chapter 3. Chapter 4. Chapter 5. Chapter 6. Chapter 7. Chapter 8. Chapter 9 Chapter 10. Chapter 1. Appendix E: The Complete List of Idioms. Chapter 3. Chapter 4. Chapter 5. Chapter 6. Chapter 7. Chapter 8. Chapter 9. Chapter 10. Chapter 1. Chapter 12. Appendix F. The Complete List of Programming Style Guidelines. Chapter 3. Chapter 4. Chapter 6. Chapter 7. Chapter 8. Chapter 10. Chapter 1. Chapter 12. Appendix G: The Complete List of Portability. Guidelines. Chapter 3. Chapter 8. Chapter 1. Chapter 13. Appendix H: Cross Reference Index of Useful Code Fragments. References. Index.


Best Sellers


Product Details
  • ISBN-13: 9780201702798
  • Publisher: Pearson Education (US)
  • Publisher Imprint: Pearson
  • Depth: 25
  • Language: English
  • Returnable: N
  • Spine Width: 100 mm
  • Width: 100 mm
  • ISBN-10: 0201702797
  • Publisher Date: 18 Apr 2000
  • Binding: Paperback
  • Height: 100 mm
  • No of Pages: 592
  • Series Title: English
  • Weight: 100 gr


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 for Java Programmers
Pearson Education (US) -
C for Java Programmers
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 for Java Programmers

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