原型:
extern char *stpcpy(char *dest,char *src);用法
#include <string.h>功能:
把src所指由NULL結束的字元串複製到dest所指的數組中。說明:
src和dest所指記憶體區域不可以重疊且dest必須有足夠的空間來容納src的字元串。返回指向dest結尾處字元(NULL)的指針。
舉例:
// stpcpy.c#include <syslib.h>
#include <string.h>
main()
{
char *s="Golden Global View";
char d【20】;
clrscr();
stpcpy(d,s);
printf("%s",d);
getchar();
return 0;
}