p是指在C语言程式设计中,%p 输出一个指针的地址。
基本介绍
- 中文名指针
- 外文名point
- 来源C语言程式设计
- C语音代码p
例如
#include <stdio.h>
void main ()
{
int value;
printf("The address of the variable value is %p\n",
&value);
}
结果The address of the variable value is 0012FF7C
p是指在C语言程式设计中,%p 输出一个指针的地址。