#include using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ int * show1(); int * show2(); int * show3(); int main(int argc, char** argv) { //函式傳回指標位址,有兩種方法 //方法1:傳回50值的特定記憶體位址 int * p1; p1 = show1(); cout<<"(after) p1 = "<