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

书籍源码

开发平台:

Visual C++

  1. //【例1.3】字符数组和字符串处理函数的应用。
  2. # include <iostream>
  3. # include <cstring>
  4. using namespace std;
  5. int main() {
  6. char s1[]="Hello C++";   //初始化决定数组s1[]有10个元素
  7. char s2[10], s3[20];
  8. s2[0]='B';s2[1]='e';s2[2]='g';s2[3]='i';s2[4]='n';
  9. s2[5]='';  //串结束符对字符串处理非常重要
  10. strcpy(s3, s2);
  11. cout<<"The length of ""<<s1<<"" is:"<<strlen(s1)<<'n';
  12. cout<<s2<<'t'<<s3<<'n';  //只有字符数组可整体输出
  13.     return 0;
  14. }