Fork me on GitHub
摘要: 摘自CSDN博客 原文 http://blog.csdn.net/xinshen1860/article/details/22733953 在多道程序环境下,要使程序运行,必须先为程序创建进程。而创建进程的第一件事就是:将 程序和数据 装入内存。如何将一个用户源程序变成可在内存中执行的程序,通常都要 阅读全文
posted @ 2016-02-16 23:26 玻尔兹曼机 阅读(3367) 评论(2) 推荐(2) 编辑
摘要: 1 #include<stdio.h> 2 #include<assert.h> 3 4 char * Strcpy(char *dst,const char *src) 5 { 6 assert(dst != NULL && src != NULL); 7 char *ret = dst; 8 w 阅读全文
posted @ 2016-02-16 12:18 玻尔兹曼机 阅读(827) 评论(0) 推荐(1) 编辑