Loose-Info.com
Last Update 2012/07/05
TOP - C言語 - 演算子 - 単項&

対象となるオブジェクト(変数、配列要素)のアドレスを示します。

(例)
#include <stdio.h> int main() { int n1 = 10; int *p1; /* p1をintへのポインタとする */ p1= &n1; /* p1にn1のアドレスを代入 */ printf("%d %d\n", n1, *p1); return 0; }

実行結果
10 10