
基础
存活能力
这个作者很懒,什么都没留下…
展开
-
repo拉取tag
repo使用原创 2023-01-11 11:33:11 · 566 阅读 · 0 评论 -
内存稳定性测试开源工具
http://pyropus.ca/software/memtester/原创 2021-03-12 12:19:55 · 372 阅读 · 0 评论 -
sizeof结构体指针
#include "stdio.h"typedef struct test_t{ int a; int b; int c; int d;}mytest;int main(){ mytest *test; printf("sizeof=%ld\n",sizeof(*test));}结果打印为16原创 2021-03-03 23:13:59 · 2142 阅读 · 1 评论