There are situations when we don't want to rely upon Free Store for allocating memory and we want to use custom memory allocations using new.
For these situations we can use Placement New, where we can tell `new' operator to allocate memory from a pre-allocated memory location
For example
int a4b...