摘要: // <![CDATA[ #include <stdio.h> #include <stdlib.h> typedef union data { unsigned long vi; double vd; } data; void main() { data a; a.vd = 22.0; print 阅读全文
posted @ 2016-09-27 23:32 jeremyatchina 阅读(136) 评论(0) 推荐(0) 编辑
摘要: void die(const char *msg) { perror(msg); exit(errno); } 阅读全文
posted @ 2016-09-27 19:06 jeremyatchina 阅读(346) 评论(0) 推荐(0) 编辑
摘要: Re-execute itself from elf file. 阅读全文
posted @ 2016-09-27 18:40 jeremyatchina 阅读(243) 评论(0) 推荐(0) 编辑