01 2023 档案

摘要:csapp 第一章 计算机系统漫游计算机系统由硬件和系统软件组成,共同工作来运行应用程序。 #include<stdio.h> int main(){ printf("hello world! C"); return 0; } 追踪程序hello.c的生命周期—>创建,运行,输出,终止。 1 信息=位+上下文 hello.c即为源程 阅读全文
posted @ 2023-01-15 23:13 Dreaife 阅读(32) 评论(0) 推荐(0)
摘要:class01 shell 特点 they allow you to run programs, give them input, and inspect their output in a semi-structured way 使用 date # 显示时间 echo hello # 输入参数‘h 阅读全文
posted @ 2023-01-11 22:51 Dreaife 阅读(25) 评论(0) 推荐(0)