#include using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ void show_value(int a); void show_address(int * p); int main(int argc, char** argv) { int a1 = 10; int * p1; p1 = &a1; //1.函式的傳值呼叫 cout<<"(before) a1 = "<