strcat()和strcpy()用法

 strcat()拼接串    原型:extern char *strcat(char *dest,char *src);          用法:#include <string.h>    功能:把src所指字符串添加到dest結尾處(覆蓋dest結尾處的'\0')並添加'\0'。    說明:src和dest所指內存區域不可以重疊且dest必須有足夠的空間來容納src的        字符串
相關文章
相關標籤/搜索