【C语言库函数源代码】
【本程序在Dev C++ 4.9.9.2 下编译通过】
/*
Allocates enough storage via malloc() for a copy of the string, copies the string into the new memory, and returns a pointer to it.
复制字符串,返回指向被复制字符串的指针。所需空间由malloc()分配,且可以由free()释放。需要注意的是,在调用完这个函数后,一定要记得释放内存空间吆。
*/
#include <stdlib.h>