摘要: strcpy(): 纯文本复制 #include <stdio.h> #include <string.h> int main () { char str[80]; strcpy (str,"these "); strcat (str,"strings "); strcat (str,"are ") 阅读全文
posted @ 2017-01-05 10:22 丁培飞 阅读(1560) 评论(0) 推荐(0) 编辑