如果我使用strcpy()功能和赋值运算符,它们有什么区别吗?
strcpy()
char word[][40],*first;
以下是2个例子.
*first=word[0]; strcpy(first,&word[0]);
c
c ×1