码迷,mamicode.com
首页 > 编程语言 > 详细

c语言中对指向指针的指针的理解?

时间:2017-06-02 11:38:33      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:clu   方法   file   语言   运用   creat   purpose   int   turn   

 1 /*************************************************************************
 2     > File Name: ptr_to_ptr.c
 3     > Author: Mr.Yang
 4     > Purpose:演示指向指针的指针 
 5     > Created Time: 2017年06月02日 星期五 09时17分45秒
 6  ************************************************************************/
 7 
 8 #include <stdio.h>
 9 #include <stdlib.h>
10 
11 int main(void)
12 {
13         int myvar = 12;
14 
15         int *ptr;
16         ptr = &myvar;
17 
18         /*
19         int **ptr_to_ptr;
20         *ptr_to_ptr = &ptr;//怎么实现指向指针的指针的运用?此种方法证明不正确,为什么? 
21         */
22 
23         int **ptr_to_ptr = &ptr;//实现指向指针的指针的运用,必须这样使用么?
24 
25         printf("%d\n",**ptr_to_ptr);
26         //思考可以用puts么,为什么?
27         //puts(ptr_to_ptr);
28 
29         return 0;
30 }

 

c语言中对指向指针的指针的理解?

标签:clu   方法   file   语言   运用   creat   purpose   int   turn   

原文地址:http://www.cnblogs.com/yanglai/p/6931829.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!