C語言學習(24)

1 //用字符串指針作爲函數參數,試下字符串的複製 2 #include<stdio.h> 3 void cpystr(char *pss,char *pds){ 4 while( (*pds=*pss)!='\0' ){ 5 pss++; 6 pds++; 7 } 8 } 9 10 int main(){ 11 char
相關文章
相關標籤/搜索