IT training c programming absolute beginners guide (3rd ed ) perry miller 2013 08 17

617 196 0
IT training c programming  absolute beginners guide (3rd ed ) perry  miller 2013 08 17

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

About This eBook ePUB is an open, industry-standard format for eBooks However, support of ePUB and its many features varies across reading devices and applications Use your device or app settings to customize the presentation to your liking Settings that you can customize often include font, font size, single or double column, landscape or portrait mode, and figures that you can click or tap to enlarge For additional information about the settings and features on your reading device or app, visit the device manufacturer’s Web site Many titles include programming code or configuration examples To optimize the presentation of these elements, view the eBook in single-column, landscape mode and adjust the font size to the smallest setting In addition to presenting code and configurations in the reflowable text format, we have included images of the code that mimic the presentation found in the print book; therefore, where the reflowable format may compromise the presentation of the code listing, you will see a “Click here to view code image” link Click the link to view the print-fidelity code image To return to the previous page viewed, click the Back button on your device or app C Programming Third Edition Greg Perry and Dean Miller 800 East 96th Street Indianapolis, Indiana 46240 C Programming Absolute Beginner’s Guide Third Edition Copyright © 2014 by Pearson Education, Inc All rights reserved No part of this book shall be reproduced, stored in a retrieval system, or transmitted by any means, electronic, mechanical, photocopying, recording, or otherwise, without written permission from the publisher No patent liability is assumed with respect to the use of the information contained herein Although every precaution has been taken in the preparation of this book, the publisher and authors assume no responsibility for errors or omissions Nor is any liability assumed for damages resulting from the use of the information contained herein ISBN-13: 978-0-7897-5198-0 ISBN-10: 0-7897-5198-4 Library of Congress Control Number: 2013943628 Printed in the United States of America First Printing: August 2013 Acquisitions Editor Mark Taber Managing Editor Sandra Schroeder Project Editor Mandie Frank Copy Editor Krista Hansing Editorial Services, Inc Indexer Brad Herriman Proofreader Anne Goebel Technical Editor Greg Perry Publishing Coordinator Vanessa Evans Interior Designer Anne Jones Cover Designer Matt Coleman Compositor TnT Design, Inc Trademarks All terms mentioned in this book that are known to be trademarks or service marks have been appropriately capitalized Que Publishing cannot attest to the accuracy of this information Use of a term in this book should not be regarded as affecting the validity of any trademark or service mark Warning and Disclaimer Every effort has been made to make this book as complete and as accurate as possible, but no warranty or fitness is implied The information provided is on an “as is” basis The authors and the publisher shall have neither liability nor responsibility to any person or entity with respect to any loss or damages arising from the information contained in this book or from the use of the programs accompanying it Bulk Sales Que Publishing offers excellent discounts on this book when ordered in quantity for bulk purchases or special sales For more information, please contact U.S Corporate and Government Sales 1-800-382-3419 corpsales@pearsontechgroup.com For sales outside the United States, please contact International Sales international@pearsoned.com Contents at a Glance Introduction Part I: Jumping Right In What Is C Programming, and Why Should I Care? Writing Your First C Program What Does This Do? Clarifying Your Code with Comments Your World Premiere—Putting Your Program’s Results Up on the Screen Adding Variables to Your Programs Adding Words to Your Programs Making Your Programs More Powerful with #include and #define Interacting with Users Part II: Putting C to Work for You with Operators and Expressions Crunching the Numbers—Letting C Handle Math for You 10 Powering Up Your Variables with Assignments and Expressions 11 The Fork in the Road—Testing Data to Pick a Path 12 Juggling Several Choices with Logical Operators 13 A Bigger Bag of Tricks—Some More Operators for Your Programs Part III: Fleshing Out Your Programs 14 Code Repeat—Using Loops to Save Time and Effort 15 Looking for Another Way to Create Loops 16 Breaking in and out of Looped Code 17 Making the case for the switch Statement 18 Increasing Your Program’s Output (and Input) 19 Getting More from Your Strings 20 Advanced Math (for the Computer, Not You!) Part IV: Managing Data with Your C Programs 21 Dealing with Arrays 22 Searching Arrays 23 Alphabetizing and Arranging Your Data 24 Solving the Mystery of Pointers 25 Arrays and Pointers 26 Maximizing Your Computer’s Memory 27 Setting Up Your Data with Structures Part V: Files and Functions 28 Saving Sequential Files to Your Computer 29 Saving Random Files to Your Computer 30 Organizing Your Programs with Functions 31 Passing Variables to Your Functions 32 Returning Data from Your Functions Appendixes A The ASCII Table B The Draw Poker Program Index Table of Contents Introduction Who’s This Book For? What Makes This Book Different? This Book’s Design Elements How Can I Have Fun with C? What Do I Do Now? Part I: Jumping Right In What Is C Programming, and Why Should I Care? What Is a Program? What You Need to Write C Programs The Programming Process Using C Writing Your First C Program A Down-and-Dirty Chunk of Code The main() Function Kinds of Data Characters and C Numbers in C Wrapping Things Up with Another Example Program What Does This Do? Clarifying Your Code with Comments Commenting on Your Code Specifying Comments Whitespace A Second Style for Your Comments Your World Premiere—Putting Your Program’s Results Up on the Screen How to Use printf() The Format of printf() Printing Strings Escape Sequences Conversion Characters Putting It All Together with a Code Example Adding Variables to Your Programs Kinds of Variables Naming Variables Defining Variables Storing Data in Variables Adding Words to Your Programs Understanding the String Terminator The Length of Strings Character Arrays: Lists of Characters Initializing Strings Making Your Programs More Powerful with #include and #define Including Files Placing #include Directives Defining Constants Building a Header File and Program Interacting with Users Looking at scanf() Prompting for scanf() Problems with scanf() Part II: Putting C to Work for You with Operators and Expressions Crunching the Numbers—Letting C Handle Math for You Basic Arithmetic Order of Operators Break the Rules with Parentheses Assignments Everywhere 10 Powering Up Your Variables with Assignments and Expressions Compound Assignment Watch That Order! Typecasting: Hollywood Could Take Lessons from C 11 The Fork in the Road—Testing Data to Pick a Path Testing Data Using if Otherwise : Using else 12 Juggling Several Choices with Logical Operators Getting Logical Avoiding the Negative The Order of Logical Operators 13 A Bigger Bag of Tricks—Some More Operators for Your Programs Goodbye if else; Hello, Conditional The Small-Change Operators: ++ and -Sizing Up the Situation Part III: Fleshing Out Your Programs 14 Code Repeat—Using Loops to Save Time and Effort while We Repeat Using while Using while 15 Looking for Another Way to Create Loops for Repeat’s Sake! Working with for 16 Breaking in and out of Looped Code Take a break Let’s continue Working 17 Making the case for the switch Statement Making the switch break and switch Efficiency Considerations 18 Increasing Your Program’s Output (and Input) putchar() and getchar() The Newline Consideration A Little Faster: getch() 19 Getting More from Your Strings Character-Testing Functions Is the Case Correct? Case-Changing Functions ... Acquisitions Editor Mark Taber Managing Editor Sandra Schroeder Project Editor Mandie Frank Copy Editor Krista Hansing Editorial Services, Inc Indexer Brad Herriman Proofreader Anne Goebel Technical Editor... panic about the C+ + part You can write either C or C+ + programs in Code::Blocks Finding a C compiler these days is harder Most of the time, C compilers come bundled with an advanced version of C, ... worn-out computer in need of a hot programming language to spice up its circuits? This book is just what the doctor ordered! C Programming Absolute Beginner’s Guide breaks the commonality of computer

Ngày đăng: 05/11/2019, 15:49

Từ khóa liên quan

Mục lục

  • About This eBook

  • Title Page

  • Copyright Page

  • Contents at a Glance

  • Table of Contents

  • About the Authors

  • Dedication

  • Acknowledgments

  • We Want to Hear from You!

  • Reader Services

  • Introduction

    • Who’s This Book For?

    • What Makes This Book Different?

    • This Book’s Design Elements

    • How Can I Have Fun with C?

    • What Do I Do Now?

  • Part I: Jumping Right In

    • 1. What Is C Programming, and Why Should I Care?

      • What Is a Program?

      • What You Need to Write C Programs

      • The Programming Process

      • Using C

    • 2. Writing Your First C Program

      • A Down-and-Dirty Chunk of Code

      • The main() Function

      • Kinds of Data

      • Wrapping Things Up with Another Example Program

    • 3. What Does This Do? Clarifying Your Code with Comments

      • Commenting on Your Code

      • Specifying Comments

      • Whitespace

      • A Second Style for Your Comments

    • 4. Your World Premiere—Putting Your Program’s Results Up on the Screen

      • How to Use printf()

      • Printing Strings

      • Escape Sequences

      • Conversion Characters

      • Putting It All Together with a Code Example

    • 5. Adding Variables to Your Programs

      • Kinds of Variables

      • Naming Variables

      • Defining Variables

      • Storing Data in Variables

    • 6. Adding Words to Your Programs

      • Understanding the String Terminator

      • The Length of Strings

      • Character Arrays: Lists of Characters

      • Initializing Strings

    • 7. Making Your Programs More Powerful with #include and #define

      • Including Files

      • Placing #include Directives

      • Defining Constants

      • Building a Header File and Program

    • 8. Interacting with Users

      • Looking at scanf()

      • Prompting for scanf()

      • Problems with scanf()

  • Part II: Putting C to Work for You with Operators and Expressions

    • 9. Crunching the Numbers—Letting C Handle Math for You

      • Basic Arithmetic

      • Order of Operators

      • Break the Rules with Parentheses

      • Assignments Everywhere

    • 10. Powering Up Your Variables with Assignments and Expressions

      • Compound Assignment

      • Watch That Order!

      • Typecasting: Hollywood Could Take Lessons from C

    • 11. The Fork in the Road—Testing Data to Pick a Path

      • Testing Data

      • Using if

      • Otherwise...: Using else

    • 12. Juggling Several Choices with Logical Operators

      • Getting Logical

      • Avoiding the Negative

      • The Order of Logical Operators

    • 13. A Bigger Bag of Tricks—Some More Operators for Your Programs

      • Goodbye if...else; Hello, Conditional

      • The Small-Change Operators: ++ and --

      • Sizing Up the Situation

  • Part III: Fleshing Out Your Programs

    • 14. Code Repeat—Using Loops to Save Time and Effort

      • while We Repeat

      • Using while

      • Using do...while

    • 15. Looking for Another Way to Create Loops

      • for Repeat’s Sake!

      • Working with for

    • 16. Breaking in and out of Looped Code

      • Take a break

      • Let’s continue Working

    • 17. Making the case for the switch Statement

      • Making the switch

      • break and switch

      • Efficiency Considerations

    • 18. Increasing Your Program’s Output ⠀愀渀搀 䤀渀瀀甀琀)

      • putchar() and getchar()

      • The Newline Consideration

      • A Little Faster: getch()

    • 19. Getting More from Your Strings

      • Character-Testing Functions

      • Is the Case Correct?

      • Case-Changing Functions

      • String Functions

    • 20. Advanced Math (for the Computer, Not You!)

      • Practicing Your Math

      • Doing More Conversions

      • Getting into Trig and Other Really Hard Stuff

      • Getting Random

  • Part IV: Managing Data with Your C Programs

    • 21. Dealing with Arrays

      • Reviewing Arrays

      • Putting Values in Arrays

    • 22. Searching Arrays

      • Filling Arrays

      • Finders, Keepers

    • 23. Alphabetizing and Arranging Your Data

      • Putting Your House in Order: Sorting

      • Faster Searches

    • 24. Solving the Mystery of Pointers

      • Memory Addresses

      • Defining Pointer Variables

      • Using the Dereferencing *

    • 25. Arrays and Pointers

      • Array Names Are Pointers

      • Getting Down in the List

      • Characters and Pointers

      • Be Careful with Lengths

      • Arrays of Pointers

    • 26. Maximizing Your Computer’s Memory

      • Thinking of the Heap

      • But Why Do I Need the Heap?

      • How Do I Allocate the Heap?

      • If There’s Not Enough Heap Memory

      • Freeing Heap Memory

      • Multiple Allocations

    • 27. Setting Up Your Data with Structures

      • Defining a Structure

      • Putting Data in Structure Variables

  • Part V: Files and Functions

    • 28. Saving Sequential Files to Your Computer

      • Disk Files

      • Opening a File

      • Using Sequential Files

    • 29. Saving Random Files to Your Computer

      • Opening Random Files

      • Moving Around in a File

    • 30. Organizing Your Programs with Functions

      • Form Follows C Functions

      • Local or Global?

    • 31. Passing Variables to Your Functions

      • Passing Arguments

      • Methods of Passing Arguments

    • 32. Returning Data from Your Functions

      • Returning Values

      • The return Data Type

      • One Last Step: Prototype

      • Wrapping Things Up

  • Appendixes

    • A. The ASCII Table

    • B. The Draw Poker Program

  • Index

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan