p(C語言)

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

相關詞條

熱門詞條

聯絡我們