What features of C++ should be avoided in embedded systems?
Please classify the answer by reason such as:
In most systems you do not want to use new / delete unless you have overridden them with your own implementation that pulls from your own managed heap. Yes, it'll be work but you are dealing with a memory constrained system.