#include using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ //目的:練習:指標的指標 ,void的指標 ,指標的陣列 //(1).注意1:陣列名稱就是記憶體位址變數 = 指標 //int a1[]; a1 = *a1 int main(int argc, char** argv) { //1. 指標的指標 //a 是指標的指標 int ** a; //b 是指標 int * b = new int; *b = 50; //a 是指標b的指標 a = &b; cout<<"1. 指標的指標 :"<