int *p = (int *)malloc(100); p = realloc(p, 200); もしreallocが失敗してNULLを返した場合、元のメモリ領域(p)はどうなるか。

malloc失敗時はNULLを返す。