摘要: 1 编译系统 1.1 引入编译系统 一个简单的 C语言程序:hello.c #include <stdio.h> int main(){ int a=1; int b=2; int c=a+b; printf("hello c\n"); return c; } 高级语言:C语言,需要先转换成低级的机 阅读全文
posted @ 2022-09-06 18:12 拿了桔子跑-范德依彪 阅读(450) 评论(0) 推荐(0) 编辑