2020-10-25

2020-11-01  本文已影响0人  恰我年少时

/*

include <stdio.h>

include <math.h>

define MAX 10

void test(int *a){
*a=20;
}
int main() {
int b = 0;
test(&b);
//a接收地址,b传给地址,和scanf差不多
char name="jack";
//printf("%c",name[1]);
//printf("%s",name[1]);
//找到需要访问的元素的地址,取地址的值
/

* 数组和指针在访问时可以相互使用
*/
char *s1="zhangsan";
char *s2="lisi";
char *s3="wangwu";
char *sn[3]={s1,s2,s3};
printf("%c",sn[0][1]);
return 0;
}

上一篇下一篇

猜你喜欢

热点阅读