RosettaCodeData/Task/Memory-allocation/C++/memory-allocation-5.cpp

4 lines
51 B
C++
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#include <new>
int* p = new(std::nothrow) int(3);