+ 2
could anyone answer please..
what do we mean by the term "Bulit in" in c++?
1 Respuesta
+ 2
Built in means any type that can be used from any of the included libraries that C++ comes with.
int, double, bool, map<>, list<>, vector<>, string, char, etc...
These are all built in types. Anything that you define yourself as a type is not built in.