码迷,mamicode.com
首页 > 其他好文 > 详细

二级指针基础知识

时间:2015-02-24 18:43:15      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:指针 c语言 二级指针

/*
 ============================================================================
 Name        : TestDoublePointer.c
 Author      : lf
 Version     :
 Copyright   : Your copyright notice
 Description : 二级指针基础知识
 ============================================================================
 */

#include <stdio.h>
#include <stdlib.h>

void test();

int a=9527;
int b=1313;

int main(void) {
	test();
	return EXIT_SUCCESS;
}

void test(){
	printf("&a=%x\n",&a);
	printf("&b=%x\n",&b);
	printf("===========\n");

	int *pa=&a;
	int **pp=&pa;
	//二级指针本身的地址
	printf("pp=%x,\n",pp);
	//二级指针中保存的地址
	printf("*pp=%x,\n",*pp);
	//根据二级指针取出内容
	printf("**pp=%d\n",**pp);
	printf("===========\n");

	testDoublePointer(pp);

	printf("**pp=%d\n", **pp);
	printf("pp=%x,\n", pp);
	printf("*pp=%x,\n", *pp);
	printf("**pp=%d\n", **pp);
	printf("===========\n");
}

/**
 * 重新给二级指针赋值
 */
void testDoublePointer(int **pp){
	*pp=&b;
}

二级指针基础知识

标签:指针 c语言 二级指针

原文地址:http://blog.csdn.net/lfdfhl/article/details/43926187

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