could anyone answer please.. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

could anyone answer please..

what do we mean by the term "Bulit in" in c++?

30th Apr 2018, 7:04 PM
RiGeL
RiGeL - avatar
1 Answer
+ 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.
30th Apr 2018, 7:51 PM
Zeke Williams
Zeke Williams - avatar