- 1、本文档共331页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
The C Programming Language习题答案[精品]
The C Programming Language, 2nd edition, Kernighan and Ritchie
Answer to Exercise 1-1
Run the hello, world program on your system. Experiment with leaving out parts of the program, to see what error messages you get. Murphys Law dictates that there is no single correct answer to the very first exercise in the book. Oh well. Heres a hello world program:
#include stdio.h
int main(void)
{
printf(hello, world\n);
return 0;
}
As you can see, Ive added a return statement, because main always returns int, and its good style to show this explicitly.
Answer to Exercise 1-2
Experiment to find out what happens when printf s argument string contains \c, where c is some character not listed above. By above, the question is referring to: \n (newline) \t (tab) \b (backspace) \ (double quote) \\ (backslash) We have to tread carefully here, because using a non-specified escape sequence invokes undefined behaviour. The following program attempts to demonstrate all the legal escape sequences, not including the ones already shown (except \n , which I actually need in the program), and not including hexadecimal and octal escape sequences.
#include stdio.h
int main(void)
{
printf(Audible or visual alert. \a\n);
printf(Form feed. \f\n);
printf(This escape, \r, moves the active position to the initial position of the current line.\n);
printf(Vertical tab \v is tricky, as its behaviour is unspecified under certain conditions.\n);
return 0;
}
Answer to Exercise 1-3
Modify the temperature conversion program to print a heading above the table.
#include stdio.h
int main(void)
{
float fahr, celsius;
int lower, upper, step;
lower = 0;
upper = 300;
step = 20;
printf(F C\n\n);
fahr = lower;
while(fahr = upper)
{
celsius = (5.0 / 9.0) * (fahr - 32.0);
printf(%3.0f %6.1f\n, fahr, celsius);
fahr = fahr + step;
}
return 0;
}
Answer to Exercise 1-4
Write a program to print the corresponding Celsius to Fahrenheit table.
#include stdi
您可能关注的文档
- PPT精品-金地集团-服务式住宅研究报告[精品].ppt
- ppt技能教程:ppt技能概要[精品].ppt
- ppt课件-抗体和免疫球蛋白[精品].ppt
- Practical Science Editing Making “Good” Better 科学编辑:使文章[精品].ppt
- ppt课件-标准贯入试验[精品].ppt
- PPT小插图素材库[精品].ppt
- PPT演示文稿的设计与制作[精品].ppt
- Principles and Applications of Body Language in Nonverbal Communication 英语专业毕业论文=[精品].doc
- Principles and Applications of Body Language in Nonverbal Communication 英语专业毕业论文[精品].doc
- PPT素材合集-扁平化素材-第一期[精品].ppt
最近下载
- 北京市2023-2024学年高一上学期期中考试数学试题含答案.docx VIP
- PLM模型介绍[共83页].pdf
- 【行业研报】2023年太古地产行业企业战略规划方案及未来五年行业预测报告.docx
- 曼陀罗绘画疗愈减压公开课.pptx VIP
- 钙钛矿晶硅叠层太阳能电池的研究进展.PDF VIP
- 铁路损伤图谱PDF.doc VIP
- 中英文对照 MDCG-2021-24 Guidance on classification of medical devices-医疗器械分类指南.pdf
- 小学数学六年级上册期末测试卷带答案(实用).docx
- 《开展经典诵读,营造书香校园的实践探究》课题研究报告.doc
- 小学四年级上册生字听写(人教版).pdf
文档评论(0)