strdup ()会先用maolloc()配置与参数s字符串相同的空间大小,然后将参数s字符串的内容复制 ... #include<string.h> main() { char a[]="strdup"; char *b; b=strdup(a); ...
確定! 回上一頁