1、函数出处
#include <string.h>
extern char *strdup(char *s);
2、参数介绍
参数:char *s;
需要拷贝的字符串;
3、返回值
char *strdup返回值为拷贝到目标字符串
4、实例
理论要与实际相结合:
#include <string.h>
int main()
{
char *s="Golden Global View";
char *d;
d=strdup(s);
printf("%s",d);
getchar();
return 0;
}