本文介绍了什么是与功放的结果;指针?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是该行的结果是:

int* ptr;
printf("%x, %x\n", ptr, &ptr);

ptr的实际上是在一个存储器中的ADRESS。
那么,什么是与放大器; PTR ??

ptr is actually an adress in a memory.So what is &ptr ??

在此先感谢

推荐答案

&放大器; PTR将地址为PTR是在举行的内存位置本质上,它是一个指向指针的指针

&ptr would be the address for the memory location that ptr is held in. Essentially it is a pointer to a pointer.

这篇关于什么是与功放的结果;指针?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 10:46