008 指针操作符

C语言精彩编程百例第9个例子 指针操作符

源程序如下:

#include <stdio.h>
void main ()
{
	int *p;
	int begin,end;

	begin = 10;
	p = & begin;

	end = *p;

	printf("begin = %d\n",begin);
	printf("end = %d\n",end);

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


begin = 10;p = & begin;end = *p;

	movl	$10, -8(%ebp)   # begin
	leal	-8(%ebp), %eax  # eax = &begin
	movl	%eax, -4(%ebp)  # p = eax
	movl	-4(%ebp), %eax  # eax = p
	movl	(%eax), %eax    # eax = *p
	movl	%eax, -12(%ebp) # end = eax 

&操作符取地址 , *操作符取对应地址的内容


printf("p=%d\n",p);

	subl	$8, %esp
	pushl	-4(%ebp)
	pushl	$LC2
	call	_printf
	addl	$16, %esp


printf("*p=%d\n",*p);

	subl	$8, %esp
	movl	-4(%ebp), %eax
	pushl	(%eax)
	pushl	$LC3
	call	_printf
	addl	$16, %esp


对比这两条语句传递的参数可见 p :-4(%ebp) ; *p : (-4(%ebp))。  在内存中存的变量是p.   p是指向int 的指针, *p 是这个地址下对应的int .

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值