上一页 1 2 3 4 5 6 ··· 65 下一页
摘要: #include <stdio.h> #include <stdlib.h> #define getnode(type) (type*)malloc(sizeof(type)) struct node { char info; struct node*link; }*top,*p; char c; 阅读全文
posted @ 2021-10-04 11:03 卷哭你 阅读(165) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> typedef struct anode { char info; struct anode*link; }*ptype_node; /* (1)按定义变量的方法写出定义体 (2)把变量名换成新类型名 (3)在最前面加上关 阅读全文
posted @ 2021-10-04 11:01 卷哭你 阅读(49) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdlib.h> int main() { long frame_size = 0x12345678; union { int a; long b; char c; }m; m.b = 0x12345678; printf("Hello w 阅读全文
posted @ 2021-10-03 21:51 卷哭你 阅读(188) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-09-27 16:23 卷哭你 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-09-26 14:38 卷哭你 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-09-26 08:11 卷哭你 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-09-24 23:08 卷哭你 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-09-24 22:55 卷哭你 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-09-18 22:22 卷哭你 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-09-18 21:46 卷哭你 阅读(0) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 65 下一页