定義一個字元數組並初始化,然後輸出其中字元串 定義一個字元串變數並初始化,輸出 指向字元串的字元指針 將字元串str1複製為字元串str2 ...
定義一個字元數組並初始化,然後輸出其中字元串
#include <iostream> using namespace std; //指向整型的指針 int main(){ char str[]="I love CHINA!"; cout<<str<<endl; int arr[11]={1,2,3,4,5,6,18,168,176,168,16}; for(int i=0;i<11;i++) cout<<arr[i]<<" "; return 0; }
定義一個字元串變數並初始化,輸出
#include <iostream> using namespace std; //指向整型的指針 int main(){ string str="I love CHINA!"; cout<<str<<endl; return 0; }
指向字元串的字元指針
#include <iostream> using namespace std; //指向字元串的指針 int main(){ char *str="I love CHINA!"; cout<<str<<endl; return 0; }
將字元串str1複製為字元串str2
#include <iostream> #include <string.h> using namespace std; //指向字元串的指針 int main(){ char str1[]="I love CHINA!"; char str2[20]; //str2=str1; strcpy(str2,str1); cout<<str2<<endl; return 0; }