C / C++: Difference between revisions

From miki
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> ==…')
 
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>

=== &lt;iostream.h&gt; or &lt;iostream&gt; ===
* <code>&lt;iostream&gt;</code> is the standard compliant library. <code>&lt;iostream.h&gt;</code> is deprecated since many many years.
* <code>&lt;iostream&gt;</code> contains a set of templatized I/O classes which support both ''narrow'' and ''wide'' characters (by contrast, <code>&lt;iostream.h&gt;</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>&lt;iostream&gt;</code> differ from <code>&lt;iostream.h&gt;</code>.
* Finally, <code>&lt;iostream&gt;</code> components are declared in namespace <u><code>std</code></u> whereas <code>&lt;iostream.h&gt;</code> components are declared in the global scope.
Note that both libraries '''cannot''' be mixed in one program.

Latest revision as of 13:08, 5 February 2025

See also C and C++.

C

See C.

C++

See C++.