int *p; //宣告p是指向int的指標,英文說成p is a pointer to int ... #include <stdio.h> main () { float z = 5.5; int x = 5; int y = 5; int *p; p = &x; ...
確定! 回上一頁