摘要: #include <stdio.h> #include <stdlib.h> #include <limits.h> #include <time.h> #include <pthread.h> #include <semaphore.h> #include <unistd.h> #include 阅读全文
posted @ 2020-10-21 08:04 卷哭你 阅读(439) 评论(0) 推荐(0) 编辑
摘要: 指针使用:(1)操作单个地址 修改单个值 (2) 得到某一一串的连续首地址,遍历访问想要地址,然后操作地址,修改某个值 比如二级指针存储多个一级指针的首地址 一级指针存取 多个变量首地址 经常配合使用 ARRAY_SIZE宏 #include <stdio.h> #include <stdlib.h 阅读全文
posted @ 2020-10-21 07:47 卷哭你 阅读(340) 评论(1) 推荐(0) 编辑