- 16
- 0
- 约3.06千字
- 约 27页
- 2019-06-24 发布于四川
- 举报
认识 C语言从运行这个程序开始 第一个程序范例 打印“Hello World!” #include stdio.h main() { printf(Hello world!\n); } 考考你: 如何把Hello和world!分别打印在两行? Preprocessor instruction C has small instruction set, though the actual implementations include extensive library functions Every C program must have a main function The execution of C program starts from main() function 如何学好编程? 多读 多写 擅于利用身边的工具与环境 Knowlegde, Practice, Skills Questions and answers 无从考证究竟有多少软件用C语言编写。但我们赖以生存的软件中确实大多数都是用C语言编写。 目前新开发的软件中,尤其在Windows上,使用C语言的越来越少了,其小弟C++、Java和C#正如火如荼。 编译器(Compiler)把源代码转换为可被计算机理解的机器代码,把机器代码以可执行文件(Executable File)的形式保存在磁盘上,一
原创力文档

文档评论(0)