#include using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ void show(int * p); int main(int argc, char** argv) { //普通變數 int a = 10; //方法1.函式,傳遞取址值:&a show(&a); cout<