#include <stdlib.h>
int main(){
int *array = new int[2];
array[0] = 1;
array[1] = 2;
int ** dp = NULL;
*dp = array;
return 0;
}
実行すると、セグメンテーション違反(コアダンプ)。g++ バージョンは
/usr/lib/gcc/x86_64-redhat-linux/3.4.5/specs から仕様を読み取る: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr で構成/share/info --enable-shared --enable-threads=posix --disable-checking --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-java-awt=gtk - -host=x86_64-redhat-linux スレッド モデル: posix gcc バージョン 3.4.5 20051201 (Red Hat 3.4.5-2)