stpcpy是一種函式,功能是把字元串複製到所指的數組中。
基本介紹
- 外文名:stpcpy
- 原型:char *stpcpy(char *,char *);
- 用法:#include <string.h>
- 功能:把字元串複製到所指的數組中
- :
原型:char *stpcpy(char *dest, const char *src);
用法:#include <string.h>
功能:把src所指由NULL結束的字元串複製到dest所指的數組中。
說明:src和dest所指記憶體區域不可以重疊且dest必須有足夠的空間來容納src的字元串。
舉例:
// stpcpy.c
#include <stdio.h>
#include <string.h>
#include <stdio.h>
#include <string.h>
int main(void)
{
char *s="Golden Global View";
char d[20];
stpcpy(d,s);
printf("%s",d);
return 0;
}
{
char *s="Golden Global View";
char d[20];
stpcpy(d,s);
printf("%s",d);
return 0;
}