登入帳戶  | 訂單查詢  | 購物車/收銀台( 0 ) | 在線留言板  | 付款方式  | 聯絡我們  | 運費計算  | 幫助中心 |  加入書簽
會員登入 新註冊 | 新用戶登記
HOME新書上架暢銷書架好書推介特價區會員書架精選月讀2023年度TOP分類閱讀雜誌 香港/國際用戶
最新/最熱/最齊全的簡體書網 品種:超過100萬種書,正品正价,放心網購,悭钱省心 送貨:速遞 / EMS,時效:出貨後2-3日

2024年08月出版新書

2024年07月出版新書

2024年06月出版新書

2024年05月出版新書

2024年04月出版新書

2024年03月出版新書

2024年02月出版新書

2024年01月出版新書

2023年12月出版新書

2023年11月出版新書

2023年10月出版新書

2023年09月出版新書

2023年08月出版新書

2023年07月出版新書

『簡體書』C语言程序设计(第4版)英文版

書城自編碼: 2782227
分類: 簡體書→大陸圖書→計算機/網絡程序設計
作者: [美]Stephen G. Kochan[史蒂芬·G·寇肯]
國際書號(ISBN): 9787121273193
出版社: 电子工业出版社
出版日期: 2016-03-01


書度/開本: 16开 釘裝: 平装

售價:NT$ 810

我要買

share:

** 我創建的書架 **
未登入.



新書推薦:
海外中国研究·政治仪式与近代中国国民身份建构(1911—1929)
《 海外中国研究·政治仪式与近代中国国民身份建构(1911—1929) 》

售價:NT$ 458.0
信息、生命与物理学
《 信息、生命与物理学 》

售價:NT$ 411.0
士仕之间:汉代士人与政治
《 士仕之间:汉代士人与政治 》

售價:NT$ 354.0
语义学(上卷)(语言学及应用语言学名著译丛)
《 语义学(上卷)(语言学及应用语言学名著译丛) 》

售價:NT$ 494.0
Redis 高手心法
《 Redis 高手心法 》

售價:NT$ 520.0
勇往值钱:做自己人生的CEO
《 勇往值钱:做自己人生的CEO 》

售價:NT$ 311.0
里山资本主义:不做金钱的奴隶,做个安心的里山主人(献礼大地)
《 里山资本主义:不做金钱的奴隶,做个安心的里山主人(献礼大地) 》

售價:NT$ 307.0
欧洲雇佣兵研究(1350-1800)
《 欧洲雇佣兵研究(1350-1800) 》

售價:NT$ 338.0

內容簡介:
本书全面介绍了C语言的各种特性,包括C11中增加的内容。书中包含大量完整的示例及详细的讲解。附录中详尽总结了C语言和C语言库,两者的组织形式都便于快速参考。本书通过示例来教授C语言,每个新概念都有完整的C程序做演示。你不仅可以学习这门语言的基础知识,还能养成良好的程序设计习惯。另外,每章最后附有习题,便于课堂学习或自学。无论是否拥有编程经验,你都可以通过本书透彻地理解C语言。
關於作者:
Stephen G. Kochan撰写及合作撰写了六本经典的程序设计与Unix书籍,包括Unix Shell Programming和Programming in Objective-C。他曾任AT&T贝尔实验室的软件顾问,从事Unix和C程序设计的开发与授课工作。
目錄
目录Introduction1 Some FundamentalsProgrammingHigher-Level LanguagesOperating SystemsCompiling ProgramsIntegrated Development EnvironmentsLanguage Interpreters2 Compiling and Running Your First ProgramCompiling Your ProgramRunning Your ProgramUnderstanding Your First ProgramDisplaying the Values of VariablesCommentsExercises3 Variables, Data Types, and Arithmetic ExpressionsUnderstanding Data Types and ConstantsThe Integer Type intThe Floating Number Type floatThe Extended Precision Type doubleThe Single Character Type charThe Boolean Data Type _BoolType Specifiers: long , long long , short , unsigned , and signedWorking with VariablesWorking with Arithmetic ExpressionsInteger Arithmetic and the Unary Minus OperatorCombining Operations with Assignment: The Assignment OperatorsTypes _Complex and _ImaginaryExercises4 Program LoopingTriangular NumbersThe for StatementRelational OperatorsAligning OutputProgram InputNested for Loopsfor Loop VariantsThe while StatementThe do StatementThe break StatementThe continue StatementExercises5 Making DecisionsThe if StatementThe if-else ConstructCompound Relational TestsNested if StatementsThe else if ConstructThe switch StatementBoolean VariablesThe Conditional OperatorExercises6 Working with ArraysDefining an ArrayUsing Array Elements as CountersGenerating Fibonacci NumbersUsing an Array to Generate Prime NumbersInitializing ArraysCharacter ArraysBase Conversion Using ArraysThe const QualifierMultidimensional ArraysVariable Length ArraysExercises7 Working with FunctionsDefining a FunctionArguments and Local VariablesFunction Prototype DeclarationAutomatic Local VariablesReturning Function ResultsFunctions Calling Functions Calling...Declaring Return Types and Argument TypesChecking Function ArgumentsTop-Down ProgrammingFunctions and ArraysAssignment OperatorsSorting ArraysMultidimensional ArraysGlobal VariablesAutomatic and Static VariablesRecursive FunctionsExercises8 Working with StructuresThe Basics of StructuresA Structure for Storing the DateUsing Structures in ExpressionsFunctions and StructuresA Structure for Storing the TimeInitializing StructuresCompound LiteralsArrays of StructuresStructures Containing StructuresStructures Containing ArraysStructure VariantsExercises9 Character StringsRevisiting the Basics of StringsArrays of CharactersVariable-Length Character StringsInitializing and Displaying Character StringsTesting Two Character Strings for EqualityInputting Character StringsSingle-Character InputThe Null StringEscape CharactersMore on Constant StringsCharacter Strings, Structures, and ArraysA Better Search MethodCharacter OperationsExercises10 PointersPointers and IndirectionDefining a Pointer VariableUsing Pointers in ExpressionsWorking with Pointers and StructuresStructures Containing PointersLinked ListsThe Keyword const and PointersPointers and FunctionsPointers and ArraysA Slight Digression About Program OptimizationIs It an Array or Is It a Pointer?Pointers to Character StringsConstant Character Strings and PointersThe Increment and Decrement Operators RevisitedOperations on PointersPointers to FunctionsPointers and Memory AddressesExercises11 Operations on BitsThe Basics of BitsBit OperatorsThe Bitwise AND OperatorThe Bitwise Inclusive-OR OperatorThe Bitwise Exclusive-OR OperatorThe Ones Complement OperatorThe Left Shift OperatorThe Right Shift OperatorA Shift FunctionRotating BitsBit FieldsExercises12 The PreprocessorThe #define StatementProgram ExtendabilityProgram PortabilityMore Advanced Types of DefinitionsThe # OperatorThe ## OperatorThe #include StatementSystem Include FilesConditional CompilationThe #ifdef, #endif, #else, and #ifndef StatementsThe #if and #elif Preprocessor StatementsThe #undef StatementExercises13 Extending Data Types with the Enumerated Data Type, Type Definitions, and Data Type ConversionsEnumerated Data TypesThe typedef StatementData Type ConversionsSign Extension

 

 

書城介紹  | 合作申請 | 索要書目  | 新手入門 | 聯絡方式  | 幫助中心 | 找書說明  | 送貨方式 | 付款方式 香港用户  | 台灣用户 | 海外用户
megBook.com.tw
Copyright (C) 2013 - 2024 (香港)大書城有限公司 All Rights Reserved.