{{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程序设计

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

C程序设计

{{__(":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程序设计》全面介绍了Turbo C语言的基本概念,常量、变量、运算符和表达式,程序控制语句, 函数,指针,结构、联合、枚举和定义类型,编译预处理命令,文件,字符屏幕和图形函数 以及 实用编程技术等内容。全书共分为10章。每章附有习题和实验,并精选了一部分全国计算机 等级考试(二级C语言程序设计)的练习题,通过大量实例介绍C程序设计的思想、方法和技巧。作者根据多年教学和科研积累的丰富经验,吸取当前一些C语言教材中的优点,大篇幅增加 了字符屏幕、图形函数和实用编程技术方面的内容,力求使《C程序设计》体系合理、结构严谨、概念 清晰、例题丰富、通俗易懂。《C程序设计》是一本集教材、资料和实例为一体的C程序设计书。
《C程序设计》可作为高等院校程序设计课程的教材,也可供自学者使用或作为教师教学参考书。
与《C程序设计》配套的辅助教材《C程序设计习题题解》也同时出版。
Catalogue

第一章 C语言概述
1.1 C语言的起源
1.2 C语言的特点
1.3 C语言的词法
1.3.1 字符集
1.3.2 关键字
1.3.3 标识符
1.4 C程序的组成和结构特点
1.4.1 程序举例
1.4.2 结构特点
1.5 C程序的编辑、编译、连接和运行
1.5.1 C源程序的编辑
1.5.2 C源程序的编译和连接
1.5.3 TurboC的内存映射
1.5.4 C源程序的调试过程
1.6 标准输入/输出函数
1.6.1 格式化输入/输出函数
1.6.2 非格式化输入/输出函数
习题一
实验一TurboC源程序的编辑、编译、调试和运行

第二章 常量、变量、运算符和表达式
2.1 数据类型
2.2 常量
2.2.1 常量的数据类型
2.2.2 常量的表示方法
2.3 变量
2.3.1 变量的类型
2.3.2 变量的定义
2.3.3 变量的作用域
2.3.4 变量的存储类型
2.3.5 变量的初始化
2.4 数组
2.4.1 数组的定义
2.4.2 数组的引用
2.4.3 数组的初始化
2.4.4 应用举例
2.5 指针
2.6 运算符和表达式
2.6.1 算术运算符和加1、减1运算符
2.6.2 关系运算符、逻辑运算符及其表达式
2.6.3 按位运算符和位运算表达式
2.6.4 特殊运算符及其表达式
2.6.5 运算符优先顺序和结合性
2.7 表达式的计算过程和数据类型转换
2.7.1 表达式的计算过程
2.7.2 表达式中的类型转换
2.7.3 程序举例
2.8 综合举例
习题二
实验二基本输入/输出函数和运算符、表达式

第三章 程序控制语句
3.1 C语句概述
3.1.1 C程序结构
3.1.2 语句分类
3.2 结构化程序基本结构
3.2.1 顺序结构
3.2.2 选择结构
3.2.3 循环结构
3.3 顺序结构程序设计语句
3.4 分支结构程序设计语句
3.4.1 if语句
3.4.2 switch语句
3.5 循环结构程序设计语句
3.5.1 goto语句以及用goto语句和if语句构成循环
3.5.2 while语句
3.5.3 dowhile语句
3.5.4 for语句
3.5.5 循环的嵌套
3.5.6 几种循环的比较
3.5.7 程序举例
3.6 break和continue语句
3.6.1 break语句
3.6.2 continue语句
3.6.3 程序举例
3.7 return语句和exit()函数调用语句
3.7.1 return语句
3.7.2 exit()函数调用语句
3.8 综合举例
习题三
实验三(1)分支结构程序设计
实验三(2)循环结构程序设计

第四章 函数
4.1 函数的定义
4.1.1 定义形式
4.1.2 使用说明
4.1.3 应用举例
4.1.4 TurboC函数的扩展定义
4.2 函数的调用
4.2.1 调用形式
4.2.2 调用过程
4.2.3 调用条件
4.2.4 嵌套调用
4.3 函数间的数据传递
4.3.1 传值方式传递数据
4.3.2 传址方式传递数据
4.3.3 利用全局变量传递数据
4.3.4 处理结果在函数间的传递
4.4 函数与数组
4.5 递归函数
4.6 综合举例
习题四
实验四函数

第五章 指针
5.1 指针变量的定义和初始化
5.1.1 指针的概念
5.1.2 指针变量的定义
5.1.3 指针变量的初始化
5.1.4 近程指针和远程指针
5.2 指针运算
5.2.1 取地址运算
5.2.2 赋值运算
5.2.3 取内容运算
5.2.4 指针的算术运算
5.2.5 关系运算
5.3 指针与数组
5.3.1 指向数组元素的指针变量的定义和引用
5.3.2 指向多维数组的指针变量
5.3.3 字符串的指针变量
5.4 指针和函数
5.4.1 用指针作为函数的参数
5.4.2 指向函数的指针变量
5.4.3 指针型函数
5.5 指针数组和多级指针
5.5.1 指针数组
5.5.2 指针的指针
5.5.3 指针数组作主函数的形参
5.6 程序举例
习题五
实验五指针

第六章 结构、联合、枚举和定义类型
6.1 结构
6.1.1 结构的说明
6.1.2 结构变量的定义
6.1.3 结构成员的引用
6.1.4 结构变量的初始化
6.1.5 指向结构的指针
6.1.6 用指向结构的指针作为函数参数
6.1.7 结构型函数和结构指针型函数
6.1.8 动态数据结构
6.1.9 位域结构
6.2 联合
6.2.1 联合说明和联合变量的定义
6.2.2 联合变量的引用方式
6.2.3 联合类型数据的特点
6.2.4 应用举例
6.3 枚举
6.4 定义类型
习题六
实验六结构、联合、枚举

第七章 编译预处理命令
7.1 宏定义
7.1.1 不带参数的宏定义
7.1.2 带参数的宏定义
7.2 文件包含
7.3 条件编译
习题七
实验七编译预处理命令

第八章 文件
8.1 文件概述
8.1.1 流和文件
8.1.2 标准设备文件的换向和管道连接
8.1.3 控制台输入/输出函数
8.2 文件类型指针
8.3 文件的打开与关闭
8.3.1 文件的打开(fopen()函数)
8.3.2 文件的关闭(fclose()函数)
8.4 文件结束检测及出错检测
8.4.1 feof()函数
8.4.2 ferror()函数
8.5 文件的读/写
8.5.1 fputc()函数和fgetc()函数(putc()函数和getc()函数)
8.5.2 fread()函数和fwrite()函数
8.5.3 fprintf()函数和fscanf()函数
8.5.4 其他读/写函数
8.6 文件的定位
8.6.1 rewind()函数
8.6.2 fseek()函数
8.6.3 ftell()函数
8.7 非缓冲文件系统
8.7.1 open()、creat()和close()函数
8.7.2 read()和write()函数
8.7.3 lseek()函数和tell()函数
8.8 小结
习题八
实验八文件

第九章 字符屏幕和图形函数
9.1 PC图形适配器及其工作模式
9.2 字符屏幕函数
9.2.1 窗口
9.2.2 基本输入/输出函数
9.2.3 屏幕操作函数
9.2.4 字符属性控制函数
9.2.5 字符屏显状态函数
9.2.6 directvideo变量
9.2.7 演示程序
9.3 TurboC的图形函数
9.3.1 图形模式的初始化
9.3.2 屏幕颜色的设置和清屏函数
9.3.3 基本图形函数
9.3.4 封闭图形的填充
9.3.5 有关图形视口和图形操作函数
9.3.6 图形模式下的文本输出
9.3.7 独立图形运行程序的建立
习题九
实验九字符屏幕和图形函数

第十章 实用编程技术
10.1 TurboC库函数介绍
10.1.1 库文件的概念
10.1.2 TurboC提供的BIOS、DOS系统调用函数
10.1.3 日期和时间函数
10.1.4 字符串函数、数字字符串与数值的转换函数
10.1.5 动态内存分配函数、过程控制和数学运算函数
10.2 TurboC的存储模式
10.2.1 TurboC的存储模式
10.2.2 编译程序的内存模式选择
10.2.3 混合模式编程
10.2.4 TurboC的段修饰符
10.3 TurboC集成开发环境下程序的调试
10.3.1 编译时的常见错误
10.3.2 连接时的常见错误
10.3.3 运行时的常见错误
10.4 TurboC的命令行编译
10.5 TurboC中汉字的使用
10.5.1 汉字操作系统下汉字输入/输出的程序编制
10.5.2 非汉字操作系统下汉字的使用
10.6 TurboC和汇编程序的接口
10.6.1 TurboC调用汇编子程序
10.6.2 TurboC行间嵌入汇编
10.7 TurboC2.0集成开发环境的安装和使用
10.7.1 TurboC2.0软盘内容简介
10.7.2 TurboC2.0的安装和启动
10.7.3 TurboC2.0集成开发环境的使用
10.7.4 TurboC的配置文件

附录
附录一 常用字符与ASCII码对照表
附录二 C语言中的关键字
附录三 运算符和优先级
附录四 C语言常用语法提要
附录五 TurboC常用库函数表
附录六 键盘扩展码表
参考文献

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