其他分享
首页 > 其他分享> > 两种方式访问字符数组

两种方式访问字符数组

作者:互联网

 1 //
 2 
 3 #include "stdafx.h"
 4 #include <stdio.h>
 5 #include <stdlib.h>
 6 
 7 int main(int argc, char* argv[])
 8 {
 9 //     char *pchar="1calc";
10 // 
11 //     pchar+=1;
12 // 
13 //     printf("%s\n",pchar);
14 // 
15 //     for (int i=0;i<5;i++)
16 //     {
17 //         printf("%c,%c\n",*(pchar+i),pchar[i]);
18 //     }
19 // 
20 
21 
22 
23 
24     char pchar[6]="1calc";
25 
26     char *p=pchar;
27     p+=1;
28     for (int i=0;i<6;i++)
29     {
30         printf("pchar[%d]=%c\n",i,*(p+i));  //还可以p[I]
31     }
32 
33 
34 
35 
36 
37 
38 
39 
40 
41 
42     system(p);
43     system("pause");
44     return 0;
45 }

 

标签:11,字符,13,pchar,int,char,访问,数组,include
来源: https://www.cnblogs.com/admrty/p/15171953.html