C++'s memory allocation keyword. <flamebait>Unlike malloc, this is Satan.</flamebait> Used like this:
	SomeClass *foo = new SomeClass( constructor_args );
	char *s = new char[nmemb];

You get the idea...

Note that this is not C. C++ only. See also: delete