<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[C++ Buch, vom Eng. ins Deutsche übersetzen. (über Funktionen)]]></title><description><![CDATA[<p>&quot;In general, a C++ function is activated, or called, by another function, an the function header describes the interface between a function the that calls it.<br />
The part preceding the function name is called the function return type.&quot;</p>
<p>Nun, was mich verwirrt ist: &quot;The part preceding the function name is called the function return type.&quot; Was bedeutet das genau?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/340212/c-buch-vom-eng-ins-deutsche-übersetzen-über-funktionen</link><generator>RSS for Node</generator><lastBuildDate>Sat, 11 Apr 2026 09:05:29 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/340212.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 26 Oct 2016 11:57:10 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to C++ Buch, vom Eng. ins Deutsche übersetzen. (über Funktionen) on Wed, 26 Oct 2016 11:57:10 GMT]]></title><description><![CDATA[<p>&quot;In general, a C++ function is activated, or called, by another function, an the function header describes the interface between a function the that calls it.<br />
The part preceding the function name is called the function return type.&quot;</p>
<p>Nun, was mich verwirrt ist: &quot;The part preceding the function name is called the function return type.&quot; Was bedeutet das genau?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2512919</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2512919</guid><dc:creator><![CDATA[Bladestorm]]></dc:creator><pubDate>Wed, 26 Oct 2016 11:57:10 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Buch, vom Eng. ins Deutsche übersetzen. (über Funktionen) on Wed, 26 Oct 2016 12:10:51 GMT]]></title><description><![CDATA[<p>Bladestorm schrieb:</p>
<blockquote>
<p>Nun, was mich verwirrt ist: &quot;The part preceding the function name is called the function return type.&quot; Was bedeutet das genau?</p>
</blockquote>
<p>Das vor dem Funktionsnamen der Rückgabetyp steht. Also bei</p>
<pre><code>int func()
{
...
}
</code></pre>
<p>Ist func der Funktionsname und int der Rückgabetyp.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2512921</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2512921</guid><dc:creator><![CDATA[Tobiking2]]></dc:creator><pubDate>Wed, 26 Oct 2016 12:10:51 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Buch, vom Eng. ins Deutsche übersetzen. (über Funktionen) on Wed, 26 Oct 2016 12:13:29 GMT]]></title><description><![CDATA[<p>Bladestorm schrieb:</p>
<blockquote>
<p>&quot;In general, a C++ function is activated, or called, by another function, an the function header describes the interface between a function the that calls it.<br />
The part preceding the function name is called the function return type.&quot;</p>
<p>Nun, was mich verwirrt ist: &quot;The part preceding the function name is called the function return type.&quot; Was bedeutet das genau?</p>
</blockquote>
<p>Der Teil der dem Funktionsnamen vorgestellt ist, wird der Rückgabetyp der Funktion genannt.</p>
<pre><code>// int =&gt; Rückgabetyp (Datentyp), teiweise auch Rückgabewert genannt, wobei sich
//        dies eher auf den konkreten Wert der zurückgegeben wird bezieht.
// foo =&gt; Funktionsname
int foo()
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2512922</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2512922</guid><dc:creator><![CDATA[asc]]></dc:creator><pubDate>Wed, 26 Oct 2016 12:13:29 GMT</pubDate></item><item><title><![CDATA[Reply to C++ Buch, vom Eng. ins Deutsche übersetzen. (über Funktionen) on Wed, 26 Oct 2016 12:31:34 GMT]]></title><description><![CDATA[<p>VIELEN DANK!!!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2512923</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2512923</guid><dc:creator><![CDATA[Bladestorm]]></dc:creator><pubDate>Wed, 26 Oct 2016 12:31:34 GMT</pubDate></item></channel></rss>