中图网(原中国图书网):网上书店,中文字幕在线一区二区三区,尾货特色书店,中文字幕在线一区,30万种特价书低至2折!

歡迎光臨中圖網 請 | 注冊
> >>
C11編程導論-(英文版)

包郵 C11編程導論-(英文版)

出版社:電子工業出版社出版時間:2016-04-01
開本: 16開 頁數: 457
中 圖 價:¥34.8(3.9折) 定價  ¥89.0 登錄后可看到會員價
加入購物車 收藏
開年大促, 全場包郵
?新疆、西藏除外
溫馨提示:5折以下圖書主要為出版社尾貨,大部分為全新(有塑封/無塑封),個別圖書品相8-9成新、切口
有劃線標記、光盤等附件不全詳細品相說明>>
本類五星書更多>

C11編程導論-(英文版) 版權信息

C11編程導論-(英文版) 本書特色

本書沿用了deitel特色的“程序實況解說”,深入探討了c語言和c標準庫。通過完整的語法著色、代碼高亮、代碼演練和程序輸出,全面地介紹了測試程序的概念。本書匯集約5000行c代碼和數百個開發技巧,將幫助你構建強大的應用程序。本書的內容包括構建自定義數據結構、標準庫等;并選擇了c11標準的一些新特性,如多線程來幫助你為目前的多核系統編寫高性能的應用程序;c語言安全編程部分展示了如何讓你編寫的程序具有更好的魯棒性,不易受到攻擊。本書適合具有一定高級語言編程背景的程序員閱讀。

C11編程導論-(英文版) 內容簡介

本書沿用了Deitel特色的“程序實況解說”,深入探討了C語言和C標準庫。通過完整的語法著色、代碼高亮、代碼演練和程序輸出,全面地介紹了測試程序的概念。本書匯集約5000行C代碼和數百個開發技巧,將幫助你構建強大的應用程序。本書的內容包括構建自定義數據結構、標準庫等;并選擇了C11標準的一些新特性,如多線程來幫助你為目前的多核系統編寫高性能的應用程序;C語言安全編程部分展示了如何讓你編寫的程序具有更好的魯棒性,不易受到攻擊。 本書適合具有一定高級語言編程背景的程序員閱讀。

C11編程導論-(英文版) 目錄

目錄前言1 introduction1.1 introduction1.2 the c programming language1.3 c standard library1.4 c and other c-based languages1.5 typical c program development environment1.5.1 phase 1: creating a program1.5.2 phases 2 and 3: preprocessing and compiling a c program1.5.3 phase 4: linking1.5.4 phase 5: loading1.5.5 phase 6: execution1.5.6 standard input, standard output and standard error streams1.6 test-driving a c application in windows, linux and mac os x1.6.1 running a c application from the windows command prompt1.6.2 running a c application using gnu c with linux1.6.3 running a c application using gnu c with mac os x1.7 operating systems1.7.1 windows—a proprietary operating system1.7.2 linux—an open-source operating system1.7.3 apple’s mac os x; apple’s ios ? for iphone ? , ipad ? and ipod touch ? devices1.7.4 google’s android2 introduction to c programming2.1 introduction2.2 a simple c program: printing a line of text2.3 another simple c program: adding two integers2.4 arithmetic in c2.5 decision making: equality and relational operators2.6 secure c programming3 control statements: part i3.1 introduction3.2 control structures3.3 the if selection statement3.4 the if … else selection statement3.5 the while repetition statement3.6 class average with counter-controlled repetition3.7 class average with sentinel-controlled repetition3.8 nested control statements3.9 assignment operators3.10 increment and decrement operators3.11 secure c programming4 control statements: part ii4.1 introduction4.2 repetition essentials4.3 counter-controlled repetition4.4 for repetition statement4.5 for statement: notes and observations4.6 examples using the for statement4.7 switch multiple-selection statement4.8 do … while repetition statement4.9 break and continue statements4.10 logical operators4.11 confusing equality ( == ) and assignment ( = ) operators4.12 secure c programming5 functions5.1 introduction5.2 program modules in c5.3 math library functions5.4 functions5.5 function definitions5.6 function prototypes: a deeper look5.7 function call stack and stack frames5.8 headers5.9 passing arguments by value and by reference5.10 random number generation5.11 example: a game of chance5.12 storage classes5.13 scope rules5.14 recursion5.15 example using recursion: fibonacci series5.16 recursion vs. iteration5.17 secure c programming6 arrays6.1 introduction6.2 arrays6.3 defining arrays6.4 array examples6.5 passing arrays to functions6.6 sorting arrays6.7 case study: computing mean, median and mode using arrays6.8 searching arrays6.9 multidimensional arrays6.10 variable-length arrays6.11 secure c programming7 pointers7.1 introduction7.2 pointer variable definitions and initialization7.3 pointer operators7.4 passing arguments to functions by reference7.5 using the const qualifier with pointers7.5.1 converting a string to uppercase using a non-constant pointer to non-constant data7.5.2 printing a string one character at a time using a non-constant pointer to constant data7.5.3 attempting to modify a constant pointer to non-constant data7.5.4 attempting to modify a constant pointer to constant data7.6 bubble sort using pass-by-reference7.7 sizeof operator7.8 pointer expressions and pointer arithmetic7.9 relationship between pointers and arrays7.10 arrays of pointers7.11 case study: card shuffling and dealing simulation7.12 pointers to functions7.13 secure c programming8 characters and strings8.1 introduction8.2 fundamentals of strings and characters8.3 character-handling library8.3.1 functions isdigit , isalpha , isalnum and isxdigit8.3.2 functions islower , isupper , tolower and toupper8.3.3 functions isspace , iscntrl , ispunct , isprint and isgraph8.4 string-conversion functions8.4.1 function strtod8.4.2 function strtol8.4.3 function strtoul8.5 standard input/output library functions8.5.1 functions fgets and putchar8.5.2 function getchar8.5.3 function sprintf8.5.4 function sscanf8.6 string-manipulation functions of the string-handli
展開全部

C11編程導論-(英文版) 作者簡介

Paul Deitel,Deitel & Associates有限公司的CEO兼CTO,畢業于麻省理工學院,主修信息技術。在Deitel & Associate有限公司公司工作的過程中,他已經為行業、政府機關和軍隊客戶提供了數百節編程課程,這些客戶包括思科、IBM、西門子、Sun Microsystems、戴爾、Fidelity、肯尼迪航天中心、美國國家強風暴實驗室、白沙導彈試驗場、Rogue Wave Software、波音公司、SunGard Higher Education、北電網絡公司、彪馬、iRobot、Invensys等。他和本書的合著者Harvey M. Deitel博士是全球暢銷編程語言教材、專業書籍和視頻的作者。Harvey Deitel博士,Deitel & Associates有限公司的董事長和首席戰略官,在計算機領域中擁有50多年的經驗。Deitel博士獲得了麻省理工學院電子工程(學習計算)的學士和碩士學位,并獲得了波士頓大學的數學博士學位(學習計算機科學)。他擁有豐富的行業和大學教學經驗,在1991年與兒子Paul Deitel創辦Deitel & Associates有限公司之前,他是波士頓大學計算機科學系的主任并獲得了終身任職權。Deitel博士為很多大公司、學術研究機構、政府機關和軍方提供了數百場專業編程講座。Deitel的出版物獲得了國際上的認可,并被翻譯為繁體中文、簡體中文、韓語、日語、德語、俄語、西班牙語、法語、波蘭語、意大利語、葡萄牙語、希臘語、烏爾都語和土耳其語。

商品評論(0條)
暫無評論……
書友推薦
編輯推薦
返回頂部
中圖網
在線客服
主站蜘蛛池模板: 加气混凝土砌块设备,轻质砖设备,蒸养砖设备,新型墙体设备-河南省杜甫机械制造有限公司 | 广州各区危化证办理_危险化学品经营许可证代办 | 热缩管切管机-超声波切带机-织带切带机-无纺布切布机-深圳市宸兴业科技有限公司 | 二手光谱仪维修-德国OBLF光谱仪|进口斯派克光谱仪-热电ARL光谱仪-意大利GNR光谱仪-永晖检测 | 餐饮加盟网_特色餐饮加盟店_餐饮连锁店加盟 | 依维柯自动挡房车,自行式国产改装房车,小型房车价格,中国十大房车品牌_南京拓锐斯特房车 - 南京拓锐斯特房车 | 儿童乐园|游乐场|淘气堡招商加盟|室内儿童游乐园配套设备|生产厂家|开心哈乐儿童乐园 | 蚂蚁分类信息系统 - PHP同城分类信息系统 - MayiCMS | 赛默飞Thermo veritiproPCR仪|ProFlex3 x 32PCR系统|Countess3细胞计数仪|371|3111二氧化碳培养箱|Mirco17R|Mirco21R离心机|仟诺生物 | 泰州物流公司_泰州货运公司_泰州物流专线-东鑫物流公司 | 济南货架定做_仓储货架生产厂_重型货架厂_仓库货架批发_济南启力仓储设备有限公司 | 数控专用机床,专用机床,自动线,组合机床,动力头,自动化加工生产线,江苏海鑫机床有限公司 | GEDORE扭力螺丝刀-GORDON防静电刷-CHEMTRONICS吸锡线-上海卓君电子有限公司 | AR开发公司_AR增强现实_AR工业_AR巡检|上海集英科技 | 电子天平-华志电子天平厂家 | 无锡装修装潢公司,口碑好的装饰装修公司-无锡索美装饰设计工程有限公司 | Boden齿轮油泵-ketai齿轮泵-yuken油研-无锡新立液压有限公司 | 齿轮减速马达一体式_蜗轮蜗杆减速机配电机-德国BOSERL齿轮减速电动机生产厂家 | 撕碎机_轮胎破碎机_粉碎机_回收生产线厂家_东莞华达机械有限公司 | 数码听觉统合训练系统-儿童感觉-早期言语评估与训练系统-北京鑫泰盛世科技发展有限公司 | 高楼航空障碍灯厂家哪家好_航空障碍灯厂家_广州北斗星障碍灯有限公司 | 陕西自考报名_陕西自学考试网 | 食药成分检测_调料配方还原_洗涤剂化学成分分析_饲料_百检信息科技有限公司 | 定硫仪,量热仪,工业分析仪,马弗炉,煤炭化验设备厂家,煤质化验仪器,焦炭化验设备鹤壁大德煤质工业分析仪,氟氯测定仪 | 杭州营业执照代办-公司变更价格-许可证办理流程_杭州福道财务管理咨询有限公司 | 隧道窑炉,隧道窑炉厂家-山东艾瑶国际贸易 | 理化生实验室设备,吊装实验室设备,顶装实验室设备,实验室成套设备厂家,校园功能室设备,智慧书法教室方案 - 东莞市惠森教学设备有限公司 | 高铝轻质保温砖_刚玉莫来石砖厂家_轻质耐火砖价格 | 净气型药品柜-试剂柜-无管道净气型通风柜-苏州毕恩思 | 圆盘鞋底注塑机_连帮鞋底成型注塑机-温州天钢机械有限公司 | 磁力抛光机_磁力研磨机_磁力去毛刺机-冠古设备厂家|维修|租赁【官网】 | ★店家乐|服装销售管理软件|服装店收银系统|内衣店鞋店进销存软件|连锁店管理软件|收银软件手机版|会员管理系统-手机版,云版,App | 厦门ISO认证|厦门ISO9001认证|厦门ISO14001认证|厦门ISO45001认证-艾索咨询专注ISO认证行业 | 涿州网站建设_网站设计_网站制作_做网站_固安良言多米网络公司 | 空气能暖气片,暖气片厂家,山东暖气片,临沂暖气片-临沂永超暖通设备有限公司 | 冷轧机|两肋冷轧机|扁钢冷轧机|倒立式拉丝机|钢筋拔丝机|收线机-巩义市华瑞重工机械制造有限公司 | 模具硅橡胶,人体硅胶,移印硅胶浆厂家-宏图硅胶科技 | 耐磨焊丝,堆焊焊丝,耐磨药芯焊丝,碳化钨焊丝-北京耐默公司 | 交联度测试仪-湿漏电流测试仪-双85恒温恒湿试验箱-常州市科迈实验仪器有限公司 | 成都顶呱呱信息技术有限公司-贷款_个人贷款_银行贷款在线申请 - 成都贷款公司 | 石家庄律师_石家庄刑事辩护律师_石家庄取保候审-河北万垚律师事务所 |