编程题:使用指向指针的指针
#include<stdio.h>
void main()
{ static char *str[]={"How","are","you"};
char **p;
p=str+1;
printf("%s\n",*p);
printf("%c\n",**p);
}
编程题:使用指向指针的指针
#include<stdio.h>
void main()
{ static char *str[]={"How","are","you"};
char **p;
p=str+1;
printf("%s\n",*p);
printf("%c\n",**p);
}
C语言指针的基本认识
注意:指向指针的指针适合于做链表1.声明方式:在变量名前放置两个*符
刚学到这一点,记录一下#include <bits/stdc++.h>using names
指针数组与指向指针的指针http://wlkc.gdqy.edu.cn/jpkc/portal/blob?
举报文章
请选择举报类型
补充说明
0/200
上传截图
格式支持JPEG/PNG/JPG,图片不超过1.9M