int x[10];
int n; int *x; // なんらかの方法で n を決める x = new int[n]; // メモリの動的確保 // x[n] を配列のように利用できる delete[] x; // 利用した領域の開放