C / C++: Difference between revisions
Jump to navigation
Jump to search
(Created page with '== C == === References === * Manual pages <tt>manpages-dev</tt>, <tt>manpages-posix-dev</tt> <source lang="bash">sudo apt-get install manpages-dev manpages-posix-dev</source> ==…') |
(→C) Tag: Replaced |
||
(13 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
See also [[C]] and [[C++]]. |
|||
== C == |
== C == |
||
See [[C]]. |
|||
=== References === |
|||
* Manual pages <tt>manpages-dev</tt>, <tt>manpages-posix-dev</tt> |
|||
<source lang="bash">sudo apt-get install manpages-dev manpages-posix-dev</source> |
|||
== C++ == |
== C++ == |
||
See [[C++]]. |
|||
=== References === |
|||
* [http://www.acm.uiuc.edu/webmonkeys/book/c_guide/ The C Library Reference Guide] |
|||
: Reference for standard C |
|||
* [http://www.cplusplus.com/reference/ C++ Reference] from www.cplusplus.com |
|||
** Also contains description of [http://www.cplusplus.com/reference/clibrary/ C Language Library] |
|||
** ... and of [http://www.cplusplus.com/reference/iostream/ IOStream Library] |
|||
<source lang="bash"> |
|||
# Use ***HTTrack*** to make a local copy of the website - use option -P http://proxy:port if needed |
|||
httrack http://www.cplusplus.com/ -W -O /var/www -%v "-www.cplusplus.com/forum/*" "-www.cplusplus.com/src/*" "-www.cplusplus.com/member/*" |
|||
</source> |
|||
* [http://www.sgi.com/tech/stl/ Standard Template Library Programmer's Guide] from SGI |
|||
* '''manual pages''' <tt>stl-manual</tt> (from SGI actually!) |
|||
<source lang="bash"> |
|||
sudo apt-get install stl-manual |
|||
ln -s /usr/share/doc/stl-manual/html /var/www/sgi # Now the manual is available at http://localhost/sgi |
|||
</source> |
|||
=== <iostream.h> or <iostream> === |
|||
* <code><iostream></code> is the standard compliant library. <code><iostream.h></code> is deprecated since many many years. |
|||
* <code><iostream></code> contains a set of templatized I/O classes which support both ''narrow'' and ''wide'' characters (by contrast, <code><iostream.h></code> classes are confined to ''char'' exclusively). |
|||
* Third, the C++ standard specification of iostream's interface was changed in many subtle aspects. Consequently, the interfaces and implementation of <code><iostream></code> differ from <code><iostream.h></code>. |
|||
* Finally, <code><iostream></code> components are declared in namespace <u><code>std</code></u> whereas <code><iostream.h></code> components are declared in the global scope. |
|||
Note that both libraries '''cannot''' be mixed in one program. |