Ask your own question, for FREE!
Computer Science 10 Online
OpenStudy (anonymous):

Can any1 tell me wat does stand for in C++ 3.0 and where can I find an ebook for it and download it for free??

OpenStudy (anonymous):

You can view documentation here: http://www.cplusplus.com/reference/iostream/ and you can view the actual code here: http://cpp.comsci.us/etymology/include/iostream/iostream.html

OpenStudy (anonymous):

Hi. #include <iostream> is a directive that allows you to use pre-written code by others (could be from the standard of the language or some libraries that you or other programmers out there have written). iostream is a library that makes part of the C++ STL (standard library), that allows you to deal with I/O (input/output), such as "cin," "cout," etc. When you compile, there will be some linking done first and then it'll create the object code and executable. The linking is pretty much checking those libraries that you #include (it could be several of them)...whenever it encounters cin, cout, etc. The links above explain and also show you some diagrams that you can understand really well what it is all about. Good luck, and let me know if I can help you with anything regarding your C++ studies.

OpenStudy (anonymous):

it's the standard library which gives the programmer the ability to make reference to certain 'reserved words' eg. cin (for keyboard input) and cout (display or print on screen). without this you won't be able to have access to 'cin' and 'cout '

OpenStudy (anonymous):

visit 4shared.com and search c plus plus.

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!