○newの失敗 ■newが失敗するとポインタにNULLが返ってきます。 #include <stdio.h> void main(){ int*i; i=new int[1000000000]; if(i==NULL){ printf("new 失敗\n"); }else{ printf("new 成功\n"); } delete[] i; }