闲下来,写的代码,很是简单,不解释,代码如下:

  

   #include <stdio.h>

   int main(int argc, char **argv)
{
char cArray[] = "Hello,World!"; for(int i = ; i < ; i++){
printf("the cArray[%d]: %c", i, cArray[i]);
} for(int i = ; i < ; i++){
printf("%d[the cArray]: %c\n", i, i[cArray]);
} return ;
}

  执行结果为:

the cArray[0]: H
the cArray[1]: e
the cArray[2]: l
the cArray[3]: l
the cArray[4]: o
the cArray[5]: ,
the cArray[6]: W
the cArray[7]: o
the cArray[8]: r
the cArray[9]: l
the cArray[10]: d
the cArray[11]: !
0[the cArray]: H
1[the cArray]: e
2[the cArray]: l
3[the cArray]: l
4[the cArray]: o
5[the cArray]: ,
6[the cArray]: W
7[the cArray]: o
8[the cArray]: r
9[the cArray]: l
10[the cArray]: d
11[the cArray]: !

  将代码改为:

#include <stdio.h>

int main(int argc, char **argv)
{
char cArray[] = "Hello,World!"; for(int i = ; i < ; i++){
printf("%c", cArray[i]);
}
printf("\n"); for(int i = ; i < ; i++){
printf("%c", i[cArray]);
}
printf("\n");
printf("%s\n", cArray); return ;
}

  代码结果:

Hello,World!
Hello,World!
Hello,World!
  关于数组的总结为:

1、可以使用数据名加下标访问,也可以使用下标加数组名访问

2、数组下标从0开始,不越界访问,需要程序员自己把握

3、字符数组可以直接赋值成字符串内容

05-11 15:18