1.1计算机和编程语言 1.计算机是how to do ,人是what to do 2.一个程序读取我写的程序,将其编译 3.解释语言(python)vs编译语言© 4.C语言是全世界最流行的语言之一(目前是Java) 5.C语言是工业语言,学习它一般用来练习,而不是开发软件。 第一个c语言程序 #include <stdio.h> int main() { printf(“hello world”); return 0; }