Creation of simple types in c++

Variables of type int, bool, double, char, etc. are NOT objects. These types are called primitive types, so no constructor/destructor outside of memory allocation/deallocation. Look them up for more details.

Leave a Comment