RosettaCodeData/Task/Memory-allocation/C++/memory-allocation-5.cpp
2023-07-01 13:44:08 -04:00

3 lines
51 B
C++

#include <new>
int* p = new(std::nothrow) int(3);