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 输出一个指针的地址。