Ex5_2.cpp
上传用户:wuzhousb
上传日期:2022-07-12
资源大小:380k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. //【例5.2】字符数组与字符数组相连接。
  2. #include <iostream>
  3. using namespace std;
  4. void strcat(char s[],char ct[]){
  5. int i=0,j=0;
  6. while (s[i]!=0) i++;
  7. while (ct[j]!=0)  s[i++]=ct[j++];
  8. s[i]='';
  9. }
  10. int main (void){
  11. char a[40]="李明";
  12. char b[20]="是东南大学学生";
  13. cout<<a<<endl;
  14. cout<<b<<endl;
  15. strcat(a,b);
  16. cout<<"字符串连接后:"<<endl;
  17. cout<<a<<endl;                  //打印字符数组a
  18. return 0;
  19. }