摘要: csapp 第一章 计算机系统漫游 计算机系统由硬件和系统软件组成,共同工作来运行应用程序。 #include<stdio.h> int main(){ printf("hello world! C"); return 0; } 追踪程序hello.c的生命周期—>创建,运行,输出,终止。 1 信息=位+上下文 hello.c即为源程 阅读全文
posted @ 2023-01-15 23:13 Dreaife 阅读(37) 评论(0) 推荐(0)