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

c语言之指向指针的指针

时间:2019-12-31 22:01:27      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:col   ++   stream   nihao   ios   http   定义   turn   通过   

定义:int **p;

实例:

#include<stdio.h>
#include<iostream>

int main() {
    char* str[] = { "hello","hi","nihao" };
    char** p;
    for (int i = 0; i < 3; i++)
    {   //指针指向数组中的第几个指针
        p = str + i;
        //想要获得指针指向的值,通过*来解引用
        printf("%s\n", *p);
    }
    system("pause");
    return 0;
}

输出:

技术图片

c语言之指向指针的指针

标签:col   ++   stream   nihao   ios   http   定义   turn   通过   

原文地址:https://www.cnblogs.com/xiximayou/p/12127257.html

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