are class libraries a part of C++ i.e are they inbuilt ?
SNOWMAN
2012-06-06 07:44:14 UTC
Are they inbuilt or they come in packages of windows / macintosh? sorry i have just started learning programming. So I don't understand this.
Regards
Three answers:
?
2012-06-06 07:58:51 UTC
I don't think the other answers here at this time are quite adequate. C++... All compilers come with a set of standard libraries that work as defined in the standard. Many compilers come with non-standard libraries that you would do best to avoid because they aren't compatible with other compilers unless you include the library if you distribute your source code which goes against some licensing agreements. ie. you'd be a software pirate even though you are trying to distribute your own code.
Stick to the standard libraries and you won't have any trouble and anyone ill be able to compile your code on any machine and with any operating system.
?
2012-06-06 14:49:02 UTC
It depends On the Compiler. Turboc, MSVC++, Borland etc come with inbuilt Libraries.
e.g Parallel Library in .Net C++.
But Now Libraries has become essential part of Programming Languages and Compilers, also see ISO C++ STD Lib: