Nothrow nouveau dans CPP

int *p = new(nothrow) int;
if (!p)
{
   cout << "Memory allocation failed\n";
}
Manmohan