{{sellerTotalView > 1 ? __("sellers", {number: sellerTotalView}) : __("seller", {number: sellerTotalView}) }}, {{numTotalView > 1 ? __("items", {number: numTotalView}) : __("item", {number: numTotalView}) }}
free FREE

Change Your Zip Code

Inventory information and delivery speeds may vary for different locations.

Location History

{{email ? __('Got it!') : __('Restock Alert')}}

We will notify you by email when the item back in stock.

Cancel
Yami

Jingdong book

C语言大学教程(第6版)(含DVD光盘1张)

{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}

C语言大学教程(第6版)(含DVD光盘1张)

{{__(":people-members", {'people': item.limit_people_count})}} {{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ item.invalid_price }} {{ itemDiscount }}
Ends in
{{ itemCurrency }}{{ item.valid_price }}
{{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }}
{{ itemDiscount }}
{{ itemCurrency }}{{ item.valid_price }} {{ itemCurrency }}{{ priceFormat(item.valid_price / item.bundle_specification) }}/{{ item.unit }} {{ itemCurrency }}{{ item.invalid_price }} {{itemDiscount}}
{{ itemCurrency }}{{ item.valid_price }}
Sale ends in
Sale will starts after Sale ends in
{{ getSeckillDesc(item.seckill_data) }}
{{ __( "Pay with Gift Card to get sale price: :itemCurrency:price", { 'itemCurrency' : itemCurrency, 'price' : (item.giftcard_price ? priceFormat(item.giftcard_price) : '0.00') } ) }} ({{ itemCurrency }}{{ priceFormat(item.giftcard_price / item.bundle_specification) }}/{{ item.unit }}) Details
Best before

Currently unavailable.

We don't know when or if this item will be back in stock.

Unavailable in your area.
Sold Out

Details

Full product details
Content Description

《C语言大学教程(第6版)》是全球畅销的C语言教程之一。《C语言大学教程(第6版)》系统地介绍了4种当今流行的程序设计方法--面向过程、基于对象、面向对象以及泛型编程,内容全面、生动、易懂,作者由浅入深地介绍了结构化编程及软件工程的基本概念,从简单的概念到最终的完整的语言描述,清晰、准确、透彻、详细地讲解了C语言,尤其注重程序设计思想和方法的介绍。
相对于上一版,这一版在内容方面新增加了C安全程序设计、“更上一层楼”练习集,更新了C++和面向对象程序设计、基于Allegro的游戏编程、C99标准介
Catalogue

第1章 计算机、Internet 和万维网导论
1.1 引言
1.2 计算机:硬件和软件
1.3 计算机组成
1.4 个人计算、分布式计算和客户/服务器计算
1.5 因特网和万维网
1.6 机器语言、汇编语言和高级语言
1.7 C语言的发展历史
1.8 C语言标准库
1.9 C++语言
1.10 Java语言
1.11 著名的高级语言Fortran,COBOL,Pascal 和Ada
1.12 BASIC,Visual Basic,Visual C++ ,Visual C#语言和.NET编程平台
1.13 软件发展的重要趋势:对象技术
1.14 典型的C语言程序开发环境
1.15 硬件的发展趋势
1.16 关于C语言和本书的一些注解
1.17 有价值的Web站点

第2章 C语言程序设计入门
2.1 引言
2.2 一个简单的C程序:打印一行文字
2.3 另一个简单的C程序:两个整数求和
2.4 存储单元的基本概念
2.5 C语言中的算术运算
2.6 做出判断:相等和关系运算符

第3章 结构化的C程序设计
3.1 引言
3.2 算法
3.3 伪码
3.4 控制结构
3.5 if选择语句
3.6 if else选择语句
3.7 while循环语句
3.8 算法设计案例1:计数控制的循环
3.9 自顶向下、逐步求精的算法设计案例2:标记控制的循环
3.10 自顶向下、逐步求精的算法设计案例3:嵌套的控制结构
3.11 赋值运算符
3.12 增1和减1运算符

第4章 C程序控制
4.1 引言
4.2 循环的基本原理
4.3 计数控制的循环
4.4 for循环语句
4.5 for循环语句:注意事项
4.6 应用for循环语句的例子
4.7 switch多重选择语句
4.8 do while循环语句
4.9 break和continue 语句
4.10 逻辑运算符
4.11 区分相等运算符(==)和赋值运算符(=)
4.12 结构化程序设计总结

第5章 C函数
5.1 引言
5.2 C语言中的程序模块
5.3 数学库函数
5.4 函数
5.5 函数定义
5.6 函数原型
5.7 函数调用堆栈及活动记录
5.8 头文件
5.9 按值或按引用调用函数
5.10 随机数的生成
5.11程序案例:运气游戏
5.12 存储类型
5.13 标识符作用域的规定
5.14 递归
5.15 使用递归的例子:Fibonacci数列
5.16 递归与迭代

第6章 C数组
6.1 引言
6.2 数组
6.3 数组的定义
6.4 数组的应用举例
6.5 向函数传递数组
6.6 数组元素的排序
6.7 案例分析:采用数组来计算平均值、中值和众数
6.8 数组元素的查找
6.9 多下标数组

第7章 C指针
7.1 引言
7.2 指针变量的定义和初始化
7.3 指针运算符
7.4 按引用向函数传递实参
7.5 对指针使用const 限定符
7.6 使用按引用调用方法实现冒泡法排序
7.7 sizeof 运算符
7.8 指针表达式和指针运算
7.9 指针和数组的关系
7.10 指针数组
7.11 案例学习:扑克牌洗牌和发牌模拟
7.12 函数指针

第8章 C 字符和字符串
8.1 引言
8.2 字符串和字符基础
8.3 字符处理函数库
8.4 字符串转换函数
8.5 标准输入输出库函数
8.6 字符串处理函数库中的字符串处理函数
8.7 字符串处理函数库中的比较函数
8.8 字符串处理函数库中的查找函数
8.9 字符串处理函数库中的内存函数
8.10 字符串处理函数库中的其他函数

第9章 格式化输入/ 输出
9.1 引言
9.2 流
9.3 用printf 函数实现格式化输出
9.4 打印整数
9.5 打印浮点数
9.6 打印字符串或字符
9.7 其他的转换说明符
9.8 带域宽和精度的打印
9.9 在printf 函数的格式控制字符串中使用标记
9.10 打印文本和转义序列
9.11 用scanf 函数读取格式化的输入

第10章 结构体、共用体、位操作和枚举类型
10.1 引言
10.2 结构体的定义
10.3 结构体的初始化
10.4 对结构体成员的访问
10.5 在函数中使用结构体
10.6 typedef 的使用
10.7 实例:高性能的洗牌与发牌模拟
10.8 共用体
10.9 位运算符
10.10 位域
10.11 枚举常量

第11章 文件处理
11.1 引言
11.2 数据的层次结构
11.3 文件与流
11.4 顺序存取文件的创建
11.5 从顺序存取文件中读取数据
11.6 随机存取文件
11.7 随机存取文件的创建
11.8 随机地向一个随机存取文件中写入数据
11.9 从一个随机存取文件中读取数据
11.10 案例学习:事务处理程序

第12章 数据结构
12.1 引言
12.2 自引用结构体
12.3 动态内存分配
12.4 链表
12.5 堆栈
12.6 队列
12.7 树

第13章 C 预处理
13.1 引言
13.2 #include 预处理命令
13.3 #define 预处理命令:符号常量
13.4 #define 预处理命令:宏
13.5 条件编译
13.6 #error 和#pragma 预处理命令
13.7 #和##运算符
13.8 行号
13.9 预定义的符号常量
13.10 断言

第14章 C语言的其他专题
14.1 引言
14.2 I/ O 的重定向
14.3 可变长的实参列表
14.4 使用命令行实参
14.5 由多个源文件组成的程序的编译问题
14.6 使用exit 和atexit 终止程序
14.7 volatile 类型限定符
14.8 整型和浮点型常量的后缀
14.9 关于文件的深入讨论
14.10 信号处理
14.11 动态内存分配:函数calloc 和realloc
14.12 用goto 实现无条件转移

第15章 C++ :介绍对象技术
15.1 简介
15.2 C++
15.3 简单程序:两个整数相加
15.4 C++ 标准库
15.5 头文件
15.6 内联函数
15.7 引用和引用形参
15.8 空形参列表
15.9 默认实参
15.10 一元作用域运算符
15.11 函数重载
15.12 函数模板
15.13 对象技术与UML 简介
15.14 本章小结

第16章 类与对象简介
16.1 简介
16.2 类、对象、成员函数以及数据成员
16.3 定义一个具有成员函数的类
16.4 定义一个有参成员函数
16.5 数据成员、set 函数与get 函数
16.6 用构造函数初始化对象
16.7 将类放在单独的文件中以增强重用性
16.8 将接口与实现分离
16.9 用set
Introduction

译者序

这是一本极具吸引力的引进版C语言教材,虽然译者本人曾多年从事C语言教学,也曾编写C语言教材,但这本书依然让译者爱不释手。相信您在阅读本书之后也会有同样的感受。

本书的权威性毋庸置疑。本书作者的著作曾被翻译成日文、德文、俄文、西班牙文、繁体中文、简体中文、韩文、法文、波兰文、意大利文、葡萄牙文、希腊文、乌尔都文和土耳其文,并拥有非常完备的网络教学资源,从中可看出作者的细心、精心与用心。

讲述C语言的书籍很多,其中不乏优秀和经典之作,在如此众多的C语言书籍中,本书依然脱颖而出,长期保持旺销的记录,可见本书的受欢迎程度。

一本书能够获得如此多国家的读者的认可与喜爱,恐怕并不多见。

现在译者翻译的是本书的第六版。相对于前几版而言,这一版做了大量修订,新增加了C安全程序设计、“更上一层楼”练习集,更新了C++和面向对象程序设计、基于Allegro的游戏编程、C99标准介绍,并且在附录中增加了VisualC++2008和GNUgdb调试的内容。

本书的特色在前言中已有叙述,译者从读者角度看,认为其最重要、最难得的三个特色如下:

1.内容宽广,讲解细致,有深度。不同于那种单纯的面面俱到的介绍方式,作者能够从更深入的层次去解释C语言的特性,让读者不仅知其然而且知其所以然,简单地说,就是让读者懂得“为什么”。

2.实例丰富,面向应用。几乎每一个实例都是来源于实际应用的,同时又是那么地有趣,让读者不仅通过实例理解和掌握C语言的特性,而且还懂得了如何运用这些特性去解决生活中的实际问题。这也许是本书最引人入胜的地方了。

3.相对于那些单纯介绍C语言语法知识的书籍而言,本书另一个与众不同的特色就是在内容讲解的同时,适时穿插了一些“良好的编程习惯”、“常见的编程错误”、“错误预防提示”、“性能提示”、“可移植性提示”、“软件工程视点”等提示信息。这些小贴士让读者能够站在更高的角度上去审视C语言的特性,进一步加深对内容的理解。

本书各章的正文由苏小红、李东、王甜甜完成完成,译者在个别地方修改了原著的一些笔误。翻译内容的审核工作由马培军、黄虎杰、王宇颖和郭茂祖教授负责。前言、附录和索引的翻译由马建芬完成。马吉权、杨景景、孙志岗、赵巍、车万翔、张彦航、傅忠传、张卫、温东新、侯俊英、郭萍、李希然、秦兵、陈惠鹏、孙大烈、李秀坤、徐志明、唐好选、单丽莉、刘旭东、刘国军、张洪志、郭勇、王庆北分别参与了第1-24章习题的翻译工作,郝惠馨、娄久、李漾参与了全部书稿的文字校对工作。在此对全部参与本书翻译和校对工作的人员的辛勤付出表示衷心的感谢,没有大家的密切合作,本书不可能顺利完稿。

本书全部译稿的完成用了近两年的时间,虽然经过反复推敲和字斟句酌,但错误或不准确之处也在所难免,欢迎读者来信批评指正。

最后译者想对读者说的是,初识本书,您千万不要被本书的篇幅所吓倒,翻开它,那些智慧的火花就像黑暗中的明灯一样,一定会照亮您学习C语言的征程。相信我们吧,千万不要错过。

译者

2011年11月于哈尔滨工业大学

计算机科学与技术学院

Specifications

Brand Jingdong book
Brand Origin China

Disclaimer

Product packaging, specifications and price are subject to change without notice. All information about the products on our website is provided for information purposes only. Please always read labels, warnings and directions provided with the product before use.

View Full Terms of Use
Add to favorites
{{ $isZh ? coupon.coupon_name_sub : coupon.coupon_ename_sub | formatCurrency }}
{{__("Buy Directly")}} {{ itemCurrency }}{{ item.directly_price }}
Quantity
{{ quantity }}
{{ instockMsg }}
{{ limitText }}
{{buttonTypePin == 3 ? __("Scan to view more PinGo") : __("Scan to start")}}
Sold by JD@CHINA
Ship to
{{ __("Ship to United States only") }}
Free shipping over 69
Genuine guarantee

Added to Cart

Keep Shopping

More to Consider

{{ item.brand_name }}

{{ item.item_name }}

{{ item.currency }}{{ item.market_price }}

{{ item.currency }}{{ item.unit_price }}

{{ item.currency }}{{ item.unit_price }}

Coupons

{{ coupon.coupon_name_new | formatCurrency }}
Clip Clipped Over
{{ getCouponDescStr(coupon) }}
{{ coupon.use_time_desc }}
Expires soon {{ formatTime(coupon.use_end_time) }}

Share this item with friends

Cancel

Yami Gift Card

Get this exclusive deal when paying with gift card

Terms and Conditions

Gift card deals are special offers for selected products;

The gift card deals will automatically be activated if a customer uses gift card balance at check out and the balance is sufficient to pay for the total price of the shopping cart products with gift card deals;

You will not be able to activate the gift card deals if you choose other payment methods besides gift card. The products will be purchased at their normal prices;

If your account balance is not enough to pay for the products with gift card deals, you can choose to reload your gift card balance by clicking on the Reload button at either shopping cart page or check out page;

Products that have gift card deals can be recognized by a special symbol showing 'GC Deal';

For any additional questions or concerns, please contact our customer service;

Yamibuy reserves the right of final interpretation.

Sold by Yami

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

Yami is committed to provide our customers with a peace of mind when purchasing from us. Most items shipped from Yamibuy.com can be returned within 30 days of receipt of shipment (For Food, Beverages, Snacks, Dry Goods, Health supplements, Fresh Grocery and Perishables Goods, within 7 days of receipt of shipment due to damages or quality issues; To ensure that every customer receives safe and high-quality products, we do not provide refunds or returns for beauty products once they have been opened or used, except in the case of quality issues; Some products may have different policies or requirements associated with them, please see below for products under special categories, or contact Yami Customer Service for further assistance).
Thank you for your understanding and support.

Learn More

Sold by Yami

Terms and Conditions of Yami E-Gift Card

If you choose “Redeem automatically” as your delivery method, your gift card balance will be reload automatically after your order has been processed successfully;

If you choose “Send to Email”as your delivery method, the card number and CVV will be sent to the email address automatically;

Any user can use the card number and CVV to redeem the gift card, please keep your gift card information safely. If you have any trouble receiving email, please contact Yami customer service;

Yami gift card can be used to purchase both Yami owned or Marketplace products;

Yami gift card will never expire;

Yami gift card balance does not have to be used up at once;

All rights reserved by Yami.

Return Policy

Gift card that has already been consumed is non-refundable.

Sold by JD@CHINA

Service Guarantee

Yami Free Shipping over $49
Yami Easy Returns
Yami Ships from United States

Shipping

  • United States

    Standard Shipping is $5.99 (Excluding Alaska & Hawaii). Free on orders of $49 or more.

    Local Express is $5.99 (Available in Parts of CA, NJ, MA & PA). Free on orders of $49 or more.

    2-Day Express (Includes Alaska & Hawaii) starts at $19.99.

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Sold by JD@CHINA

Service Guarantee

Yami Cross-store Free Shipping over $69
Yami 30-days Return

Yami-China FC

Yami has a consolidation warehouse in China which collects multiple sellers’ packages and combines to one order. Our Yami consolidation warehouse will directly ship the packages to your door. Cross-store free shipping over $69.

Return Policy

You may return products within 30 days upon receiving the products. Sellers take responsibilities for any wrong shipment or missing items. Packing needs to be unopened for any other than quality issues return. We promise to pack carefully, but because goods are taking long journey to destinations, simple damages to packaging may occur. Any damages not causing internal goods quality problems are not allowed to return. If you open the package and any quality problem is found, please contact customer service within three days after receipt of goods.

Shipping Information

Yami Consolidation Service Shipping Fee $9.99(Free shipping over $69)

Sellers in China will ship their orders within 1-2 business days once the order is placed. Packages are sent to our consolidation warehouse in China and combined there. Our Yami consolidation warehouse will directly ship the packages to you via UPS. The average time for UPS to ship from China to the United States is about 10 working days and it can be traced using the tracking number. Due to the pandemic, the delivery time may be delayed by about 5 days. The package needs to be signed by the guest. If the receipt is not signed, the customer shall bear the risk of loss of the package.

Sold by JD@CHINA

Service Guarantee

Free shipping over 69
Genuine guarantee

Shipping

Yami Consolidated Shipping $9.99(Free shipping over $69)


Seller will ship the orders within 1-2 business days. The logistics time limit is expected to be 7-15 working days. In case of customs clearance, the delivery time will be extended by 3-7 days. The final receipt date is subject to the information of the postal company.

Yami Points information

All items are excluding from any promotion or points events on Yamibuy.com

Return Policy

You may return product within 30 days upon receiving the product. Items returned must be new in it's original packing, including the original invoice for the purchase. Customer return product at their own expense.

Yami

Download the Yami App

Back Top

Recommended for You

About the brand

Jingdong book

为您推荐

Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折
Yami
欣葉
2种选择
欣叶 御大福 芋头麻薯 180g

周销量 600+

$1.66 $1.99 83折

Reviews{{'('+ commentList.posts_count + ')'}}

Have your say. Be the first to help other guests.

Write a review
{{ totalRating }} Write a review
  • {{i}} star

    {{i}} stars

    {{ parseInt(commentRatingList[i]) }}%

Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}
Yami Yami
{{ comment.user_name }}

{{ showTranslate(comment) }}Show Less

{{ strLimit(comment,800) }}Show more

Show Original

{{ comment.content }}

Yami
Show All

{{ formatTime(comment.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ comment.likes_count }} {{ comment.likes_count }} {{ comment.reply_count }} {{comment.in_user==uid ? __('Delete') : __('Report')}}

No related comment~

Review

Yami Yami

{{ showTranslate(commentDetails) }}Show Less

{{ strLimit(commentDetails,800) }}Show more

Show Original

{{ commentDetails.content }}

Yami
Show All

{{ formatTime(commentDetails.in_dtm) }} VERIFIED PURCHASE {{groupData}}

{{ commentDetails.likes_count }} {{ commentDetails.likes_count }} {{ commentDetails.reply_count }} {{commentDetails.in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Comments{{'(' + replyList.length + ')'}}

Yami Yami

{{ showTranslate(reply) }}Show Less

{{ strLimit(reply,800) }}Show more

Show Original

{{ reply.reply_content }}

{{ formatTime(reply.reply_in_dtm) }}

{{ reply.reply_likes_count }} {{ reply.reply_likes_count }} {{ reply.reply_reply_count }} {{reply.reply_in_user==uid ? __('Delete') : __('Report')}}

Please write at least one word

Cancel

That’s all the comments so far!

Write a review
How would you rate this item?

Please add your comment.

  • A nice nickname will make your comments more popular!
  • The nickname in your account will be changed to the same as here.
Thanks for your review
Our community rely on great reviews like yours to find the best of Asia.

Report

If you find this content inappropriate and think it should be removed from the Yami.com site, let us know please.

Cancel

Are you sure to delete your review?

Cancel

You’ve Recently Viewed

About the brand

Jingdong book