字符型数组

char 数组名[元素个数];
char  c[5];

char c[5]={‘h’,’e’,’l’,’l’,’o’};
char c[6]={“hello”};    c[5]=‘\0’

1
2
3
4
5
6
7
8
9
#include <iostream>
using namespace std;
int main(){
    char c[5]={'h','e','l','l','o'};
    for(int i=0;i<5;i++){
        cout<<c[i];
        }
    return 0;
}

字符与整数混合使用

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#include<iostream>
using namespace std;
int main(){
    char c[6];
    int i;
    c[0]='a';
    for(i=1;i<6;i++){
        c[i]=c[i-1]+2;
        cout<<c[i]<<endl;
        }
    return 0;
}
Scroll to Top