Java API are documented nicely in html files via the javadoc command. This helps a lot when I write Java codes. As for C++, where can I get documentation of the headers files? E.g what else does iostream contain? What are parameters some of these functions take? etc etc
Luke.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
If you want to know what it contains I recommend notepad ot scite to open and read it... :)
For further information www.cppreference.com is a nice site with some short info.
upcase
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Java API are documented nicely in html files via the javadoc command. This helps a lot when I write Java codes. As for C++, where can I get documentation of the headers files? E.g what else does iostream contain? What are parameters some of these functions take? etc etc
Luke.
If you want to know what it contains I recommend notepad ot scite to open and read it... :)
For further information www.cppreference.com is a nice site with some short info.
upcase
for you own use, there are tools, like doxygen to document C/C++ Files and generate documentation.
Patrick