- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
Introduction C Programming Lecture1 Overview of C 1.1 History of C ALGOL 1960 International Group BCPL 1967 Martin Richards B 1970 Ken Thompson Traditional C 1972 Dennis Ritchie KR C 1978 Kernighan and Ritchie ANSI C 1989 ANSI Committee ANSI/ISO C 1990 ISO Committee 1.2 Importance of C The increasing popularity of C is probably due to its many desirable qualities. Programs written in C are efficient and fast. There are only 32 keywords and its strength lies in its built-in functions C is highly portable C language is well suited for structured programming C can extend itself 1.3 Sample Program 1: Printing a Message main /*…………printing being …………*/ printf “I see , I rember” ; /*………….pinting end…………….*/ function function body comment lines executive statement #include * * /*一个简单的程序*/ #include void main printf hello,world\n ; } 编译预处理——文件包含 主函数 C程序举例1 注释,符号/*和*/之间的内容称为注释。 The Main Function The main is a part of every C program. C permits different forms of main statement. Following forms are allowed. main int main void main main void void main void int main void The empty pair of parentheses indicates that the function has no arguments. This may be explicitly indicated by using the keyword void inside the word main. The keyword void means that the function does not return any information to the operating system and int means that the function returns a integer value to the operating system. When int is specified, the last statement in the program must be “return 0”.For the sake of simplicity, we use the first form in our programs. Format of Simple C Programs main ………… ………… ………… Function name Start of program Program statements End of program 1.4 Sample Program 2: Adding Two Numbers Consider another program , which performs addition on two numbers and displays the result . The complete program is shown /*Program ADDITION line-1 */ /*Written by EBG line-2 */ main /* line-3 */ /* line-4 */ int num1 100; /*please complete the program yourself*
您可能关注的文档
- (课件) 康佳不用除霜不串味也不风干食物的冰箱 BCD-610WD6EGL 上市指引.pptx
- (课件) 康佳十字对开冰箱BCD-405D4GL上市指引.pptx
- (马克思主义基本原理概论教学资料)《共产党宣言》读书笔记.docx
- (马克思主义基本原理概论教学资料)《马克思主义基本原理概论》试卷xtsj01.doc
- (马克思主义基本原理概论教学资料)《马克思主义基本原理概论》试卷xtsj02.doc
- (马克思主义基本原理概论教学资料)《马克思主义基本原理概论》试卷xtsj03.doc
- (马克思主义基本原理概论教学资料)《马克思主义基本原理概论》试卷xtsj04.doc
- (马克思主义基本原理概论教学资料)《马克思主义基本原理概论》试卷xtsj05.doc
- (马克思主义基本原理概论教学资料)《马克思主义基本原理概论》试卷xtsj06.doc
- (马克思主义基本原理概论教学资料)《马克思主义基本原理概论》试卷xtsj07.doc
文档评论(0)