請問區別在何方!
請問下面幾個函數的區別在哪裡: stpcpy 和strcpy .能否給個例子說明一下。
我用的是下面的例子。
#include<stdio.h>
main()
{ char *s="Golden Global View"; char d[20]; clrscr(); stpcpy(d,s);
printf("%s",d); getchar(); return 0; }
#include<stdio.h>
main()
{ char *s="Golden Global View"; char d[20]; clrscr(); strcpy(d,s);
printf("%s",d); getchar(); return 0; }