PPswaggy  

2020年11月3日

摘要: Linux 基础 实验四 #一.实验过程 ##1.使用库函数API触发一个系统调用 ###1.1例子(time库函数) #include <stdio.h> #include <time.h> int main(){ time_t tt; struct tm *t; tt=time(NULL); t 阅读全文
posted @ 2020-11-03 20:37 PPswaggy 阅读(82) 评论(0) 推荐(0) 编辑