当前位置:   article > 正文

C语言入门 - 一维数组、二维数组、指针、字符串、字符串数组、指针数组_字符串二维数组和字符串指针数组

字符串二维数组和字符串指针数组

C语言二维数组的定义和引用

【C语言】08-数组

C语言:二维数组及其定义

 

 

数组、指针、指针数组(2018.12.28练习)

  1. #include<stdio.h>
  2. int main()
  3. {
  4. int i;
  5. char name[20] ={1,2,3,4,5,6,7,8,9,0};//
  6. char *p = "akjflkasjdl";//
  7. char *arr[12] = {"qee","qe","re","qwer"} ;//指针数组、字符串数组
  8. //p = name;//指针地址指向name[0] 数组名=数组首地址
  9. printf("print value :%s\n",p); //指针字符串
  10. printf("print char is:%c\n",*(p+1));//指针"akjflkasjdl"字符串中单个字符'k'
  11. for(i = 0; i < 20;i++) //数组的遍历
  12. {
  13. printf("%-1d",name[i]);
  14. }
  15. printf("\n");
  16. for(i = 0;i<12;i++) //指针数组的遍历
  17. {
  18. printf("%-1s",*(arr+i));//指针数组中的元素
  19. }
  20. }

YouTube教学视频: 

C语言指针

151指针数组和字符串输入

20 C语言18 指针与一维数组

11 C语言9 一维数组

练习代码:

  1. ****************************************指*针*与*数*组:*************************************************************
  2. #include <stdio.h>
  3. void test(){
  4. int a[2];
  5. int *p;
  6. //p = a[0];
  7. p = a;
  8. *p = 10;
  9. printf("%d\n",a[0]);
  10. //p=a=a[0]=10=*p
  11. }
  12. void test1(){
  13. //数组的普通遍历
  14. int a[3] = {1,2,3};
  15. int i;
  16. for( i = 0;i<3;i++){
  17. printf("a[%d] = %d\n",i,a[i]);
  18. }
  19. }
  20. void test2(){
  21. //一维数组的初始化
  22. char a[3] = {1,2,3};
  23. //让指针指向第一个元素//a = a[0]
  24. char *p = a;
  25. int i;
  26. for(i = 0;i<3;i++){
  27. //在遍历的过程中p的值一直不变
  28. printf("a[%d] = %d\n",i,*(p+i));//p+1是p+数组数据类型的1 例如:char = 1byte int = 2byte
  29. }
  30. }
  31. void test3(){
  32. char a[3] = {1,2,3};//char 1;int 2;double 4;long ;float;
  33. char *p = a; //a = a[0]
  34. int i;
  35. for(i = 0;i<3;i++){
  36. //在遍历的过程中p的值改变
  37. printf("a[%d] = %d\n",i,*(p++));//
  38. }
  39. }
  40. void test4(){
  41. char a[3] = {1,2,3};//char 1;int 2;double 4;long ;float;
  42. //char *p = a; //a = a[0]
  43. int i;
  44. for(i = 0;i<3;i++){
  45. //!=printf("a[%d] = %d\n",i,*(a++))因为:a是数组的首地址,数组的首地址不能改变!
  46. printf("a[%d] = %d\n",i,*(a+i));
  47. }
  48. }
  49. int main(void)
  50. {
  51. test4();
  52. return 0;
  53. }
  54. *******************************字符串数组&指针数组******************************************************************
  55. #include<stdio.h>
  56. //字符串输入
  57. void test3()
  58. {
  59. char name[20]; //定义字符串数组
  60. printf("请输入姓名:\n");
  61. scanf("%s",name); //数组名name就是地址
  62. //'j' 'a' 'c' 'k' '\0'
  63. printf("%c\n",name[2]); //name[0] = 'j' name[2] = 'c'
  64. printf("你刚才输入的字符串是:%s\n",name);
  65. }
  66. //定义字符串数组
  67. void test2()
  68. {
  69. //指针字符串
  70. char *name = "jack";
  71. // int age[5];
  72. //指针数组(字符串数组)
  73. char *names[5] = { "jack","rose","jack"};
  74. //二维字符数组(字符串数组)
  75. char names2[2][10] = {"jack2","rose2"};
  76. }
  77. //定义字符串
  78. void test()
  79. {
  80. char a = 'i'; //单个字符
  81. char name[] = "hello "; //字符串变量
  82. char *name2 = "it"; //字符串常量
  83. char *name3 = "it";
  84. }
  85. int main()
  86. {
  87. return 0;
  88. }
  89. **************************************二维数组***********************************************************
  90. int main()
  91. {
  92. int i,j,a[3][5];
  93. int m,n;
  94. int array[2][3]={{4,2,5},{2,6,4}};
  95. int i2,j2;
  96. printf("input score\n");
  97. for(i=0;i<3;i++)
  98. {
  99. for(j=0;j<5;j++)
  100. {
  101. scanf("%d",&a[j][i]);
  102. }
  103. }
  104. printf(" stop input score\n");
  105. Sleep(1000);
  106. for(i2=0;i2<2;i2++)
  107. {
  108. for(j2=0;j2<3;j2++)
  109. printf("%d",array[i2][j2]);
  110. printf("\n");
  111. }
  112. return 0;
  113. }
  114. ****************************************************************************

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/932144
推荐阅读
相关标签
  

闽ICP备14008679号