f0304.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // f0304.cpp
  3. // C串操作
  4. //=====================================
  5. #include<iostream>
  6. using namespace std;
  7. //-------------------------------------
  8. int main(){
  9.   char* s1 = "Hello ";
  10.   char* s2 = "123";
  11.   char a[20];
  12.   strcpy(a, s1);                                      // copy
  13.   cout<<(strcmp(a,s1)==0 ? "" : " not")<<"equaln";   // compare
  14.   cout<<strcat(a, s2)<<endl;                          // concatenate
  15.   cout<<strrev(a)<<endl;                              // modify
  16.   cout<<strset(a, 'c')<<endl;                         // set
  17.   cout<<(strstr(s1, "ell") ? "" : "not ")<<"foundn"; // find string
  18.   cout<<(strchr(s1,'c') ? "": "not ")<<"foundn";     // find char
  19. }//====================================
  20.