3 lines
51 B
C++
3 lines
51 B
C++
#include <new>
|
|
|
|
int* p = new(std::nothrow) int(3);
|
#include <new>
|
|
|
|
int* p = new(std::nothrow) int(3);
|