注冊 | 登錄讀書好,好讀書,讀好書!
讀書網(wǎng)-DuShu.com
當前位置: 首頁出版圖書科學技術(shù)計算機/網(wǎng)絡(luò)軟件與程序設(shè)計C/C++及其相關(guān)雙語版C程序設(shè)計

雙語版C程序設(shè)計

雙語版C程序設(shè)計

定 價:¥35.00

作 者: (愛爾蘭)Paul Kelly 蘇小紅 著
出版社: 電子工業(yè)出版社
叢編項: 國外計算機科學教材系列·國家教育部雙語教學示范課程使用教材
標 簽: C C++ C# VC VC++ 程序設(shè)計 計算機/網(wǎng)絡(luò)

ISBN: 9787121190438 出版時間: 2013-03-01 包裝: 平裝
開本: 16開 頁數(shù): 240 字數(shù):  

內(nèi)容簡介

  《國外計算機科學教材系列·國家教育部雙語教學示范課程使用教材:雙語版C程序設(shè)計》由在計算機程序設(shè)計方面有著豐富教學和實踐經(jīng)驗的中外作者合作編寫。共分14章內(nèi)容,由淺入深全面介紹C程序設(shè)計方法,包括基本數(shù)據(jù)類型和基本輸出輸出方式、各種控制結(jié)構(gòu)和語句、指針和數(shù)組、字符串、函數(shù)、結(jié)構(gòu)、文件輸入和輸出等內(nèi)容,最后討論了C預處理器?!秶庥嬎銠C科學教材系列·國家教育部雙語教學示范課程使用教材:雙語版C程序設(shè)計》所有實例經(jīng)過精心挑選、貼近生活,尤其強調(diào)讀者的親自參與意識。每章都為初學者提供了常見錯誤分析,所選習題可提高讀者上機編程的興趣?!秶庥嬎銠C科學教材系列·國家教育部雙語教學示范課程使用教材:雙語版C程序設(shè)計》采用中英文對照混排,既方便初學者熟悉相關(guān)概念和內(nèi)容,也便于英文非母語的讀者熟悉英文專業(yè)詞匯。

作者簡介

暫缺《雙語版C程序設(shè)計》作者簡介

圖書目錄

Chapter One Introduction to C(引言)
1.1 Brief history of C(C語言簡史)
1.2 Why programmers use C(為什么程序員愛用C語言)
1.2.1 C is portable
1.2.2 C is a structured programming language
1.2.3 C is efficient
1.2.4 C is flexible
1.2.5 C is powerful
1.2.6 C is concise
1.3 Developing a C program(開發(fā)C程序)
1.4 Suggestions for learning C Programming(學習C語言程序設(shè)計的建議)

Chapter Two C Data Types(C數(shù)據(jù)類型)
2.1 Constants(常量)
2.2 Variables(變量)
2.3 Simple output to the screen(簡單的屏幕輸出)
2.4 Comments(注釋)
2.5 Data types(數(shù)據(jù)類型)
2.5.1 Short integer data types
2.5.2 Long integer data types
2.5.3 Unsigned integer data types
2.5.4 Double floating-point data type
2.6 Data type sizes(數(shù)據(jù)類型的大?。?br /> Programming pitfalls
Quick syntax reference
Exercises

Chapter Three Simple Arithmetic Operations and Expressions(簡單的算術(shù)運算和表達式)
3.1 C operators(C運算符)
3.1.1 The assignment operator
3.1.2 Arithmetic operators
3.1.3 Increment and decrement operators
3.1.4 Combined operators
3.2 Operator precedence(運算符優(yōu)先級)
3.3 Type conversions and casts(類型轉(zhuǎn)換與強制類型轉(zhuǎn)換)
Programming pitfalls
Quick syntax reference
Exercises

Chapter Four Keyboard Input and Screen Output(鍵盤輸入和屏幕輸出)
4.1 Simple keyboard input(簡單的鍵盤輸入)
4.2 Using a width and precision specification in printf( )
[在函數(shù)printf( )中使用域?qū)捄途日f明]
4.3 Single-character input and output(單個字符的輸入和輸出)
Programming pitfalls
Quick syntax reference
Exercises

Chapter Five Control Statements: If and Switch(控制語句:if和switch)
5.1 The if statement(if語句)
5.2 The if-else statement(if-else語句)
5.3 Logical operators(邏輯運算符)
5.4 Nested if statements(嵌套的if語句)
5.5 The switch statement(switch語句)
5.6 The conditional operator ?:(條件運算符)
Programming pitfalls
Quick syntax reference
Exercises

Chapter Six Iterative Control Statements: while, do-while, and for
(循環(huán)控制語句:while、do-while和for)
6.1 The while statement(while語句)
6.2 The do-while loop(do-while循環(huán))
6.3 The for statement(for語句)
6.4 Nested loops(嵌套的循環(huán))
Programming pitfalls
Quick syntax reference
Exercises

Chapter Seven Arrays(數(shù)組)
7.1 Introduction to arrays(引言)
7.2 Initialising arrays(數(shù)組初始化)
7.3 Two-dimensional arrays(二維數(shù)組)
7.4 Initialising two-dimensional arrays(二維數(shù)組的初始化)
7.5 Multi-dimensional arrays(多維數(shù)組)
Programming pitfalls
Quick syntax reference
Exercises

Chapter Eight Pointers(指針)
8.1 Variable addresses(變量的地址)
8.2 Pointer variables(指針變量)
8.3 The dereference operator *(解引用運算符*)
8.4 Why use pointers? (為什么使用指針)
Programming pitfalls
Quick syntax reference
Exercises

Chapter Nine Pointers and Arrays(指針和數(shù)組)
9.1 Pointers and one-dimensional arrays(指針和一維數(shù)組)
9.2 Pointers and multi-dimensional arrays(指針和多維數(shù)組)
9.3 Dynamic memory allocation(動態(tài)內(nèi)存分配)
9.3.1 The malloc function
9.3.2 The calloc function
9.3.3 The realloc function
9.3.4 Allocating memory for multi-dimensional arrays
Programming pitfalls
Exercises

Chapter Ten Strings(字符串)
10.1 String literals(字符串)
10.2 Long character strings(長字符串)
10.3 Strings and arrays(字符串和數(shù)組)
10.4 Displaying a string(顯示一個字符串)
10.5 The puts function[puts函數(shù)]
10.6 The gets function[gets函數(shù)]
10.7 Accessing individual characters of a string(訪問字符串中的單個字符)
10.8 Assigning a string to a pointer(用字符串為字符指針賦值)
10.9 String functions(字符串處理函數(shù))
10.9.1 Finding the length of a string
10.9.2 Copying a string
10.9.3 String concatenation
10.9.4 Comparing strings
10.9.5 Other string functions
10.10 Converting numeric strings to numbers(數(shù)值字符串向數(shù)值的轉(zhuǎn)換)
10.11 Arrays of strings(字符串數(shù)組)
Programming pitfalls
Quick syntax reference
Exercises

Chapter Eleven Functions(函數(shù))
11.1 Introduction(引言)
……

本目錄推薦

掃描二維碼
Copyright ? 讀書網(wǎng) m.ranfinancial.com 2005-2020, All Rights Reserved.
鄂ICP備15019699號 鄂公網(wǎng)安備 42010302001612號