複製鏈接
請複製以下鏈接發送給好友

p

(C語言)

鎖定
p,point(指針)的簡稱,是指在C語言程序設計中,%x按十六進制輸出。
中文名
指針
外文名
point
來    源
C語言程序設計
C語音代碼
p
例如:
#include <stdio.h>
void main ()
{
int value;
printf("The address of the variable value is %x\n");
&value);
}
結果:The address of the variable value is 0012FF7C