<?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[Call Function aber wie&#96;?]]></title><description><![CDATA[<p>Hi zusammen ich habe mal wieder eine frage unzwar wie kann ich eine function aufrufen??? ich hab es schon mit &quot;call&quot;+&quot;name der function&quot; versucht aber damit geht es nicht und in der Bolrand hilfe finde ich es auch nicht wiel ich garnicht weiß wie man so etwas nennt.<br />
naja wäre nett wennn ihr mir sagen könnet wie ich eine Funktion aufrufen kann.<br />
mfg Maxmann</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/136579/call-function-aber-wie</link><generator>RSS for Node</generator><lastBuildDate>Sun, 02 Aug 2026 03:28:19 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/136579.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 11 Feb 2006 14:39:26 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Call Function aber wie&#96;? on Sat, 11 Feb 2006 14:39:26 GMT]]></title><description><![CDATA[<p>Hi zusammen ich habe mal wieder eine frage unzwar wie kann ich eine function aufrufen??? ich hab es schon mit &quot;call&quot;+&quot;name der function&quot; versucht aber damit geht es nicht und in der Bolrand hilfe finde ich es auch nicht wiel ich garnicht weiß wie man so etwas nennt.<br />
naja wäre nett wennn ihr mir sagen könnet wie ich eine Funktion aufrufen kann.<br />
mfg Maxmann</p>
]]></description><link>https://www.c-plusplus.net/forum/post/991593</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991593</guid><dc:creator><![CDATA[Maxmann]]></dc:creator><pubDate>Sat, 11 Feb 2006 14:39:26 GMT</pubDate></item><item><title><![CDATA[Reply to Call Function aber wie&#96;? on Sat, 11 Feb 2006 14:42:30 GMT]]></title><description><![CDATA[<p>Vielleicht mit dem Funktionsnamen oder einem Funktions-Pointer ...</p>
<p>In welcher Hochsprache bitte ruft man Funktionen über irgend ein Schlüsselwort auf?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/991595</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991595</guid><dc:creator><![CDATA[Reyx]]></dc:creator><pubDate>Sat, 11 Feb 2006 14:42:30 GMT</pubDate></item><item><title><![CDATA[Reply to Call Function aber wie&#96;? on Sat, 11 Feb 2006 14:46:26 GMT]]></title><description><![CDATA[<p>Funktionen sind zentrale Bestandteile der C- und C++ Programmierung. Während bei Sprachen wie Pascal zwischen Prozeduren und Funktionen unterschieden wird, übernehmen in C und C++ die Funktionen beide Aufgabenbereiche.</p>
<p>... weiteres steht in der Hilfe unter Funktionen -&gt; Deklarationen und Prototypen</p>
<p>C/C++ kennt das Schlüsselwort CALL nicht. Vielleicht wäre ein Buch hilfreich.</p>
<p>Beispiel für Funktionsdeklarationen:</p>
<p>[cpp]int multiply(int num1, int num2);[cpp]</p>
<p>Beispiel für Funktionsdefinition:</p>
<p>[cpp]int multiply(int num1, int num2)<br />
{<br />
return num1*num2;<br />
}[cpp]</p>
<p>Aufruf mit</p>
<p>int x=multiply(3,3);</p>
]]></description><link>https://www.c-plusplus.net/forum/post/991600</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991600</guid><dc:creator><![CDATA[Christian211]]></dc:creator><pubDate>Sat, 11 Feb 2006 14:46:26 GMT</pubDate></item><item><title><![CDATA[Reply to Call Function aber wie&#96;? on Sat, 11 Feb 2006 14:54:34 GMT]]></title><description><![CDATA[<blockquote>
<p>In welcher Hochsprache bitte ruft man Funktionen über irgend ein Schlüsselwort auf?</p>
</blockquote>
<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> Ähhhh, in COBOL -&gt; würde ich im Verhältnis zu Assembler <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> als &quot;Hochsprache&quot; <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> ansehen</p>
<p><img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /> <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/991610</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991610</guid><dc:creator><![CDATA[Christian211]]></dc:creator><pubDate>Sat, 11 Feb 2006 14:54:34 GMT</pubDate></item><item><title><![CDATA[Reply to Call Function aber wie&#96;? on Sat, 11 Feb 2006 15:32:45 GMT]]></title><description><![CDATA[<p>habe vorher mit Vb prgramiert , is jetzt vlt. keien Hochsprache aber deswegen bin ich drauf gekommen, also danke ich werde mal in der Hilfe sehn.<br />
mfg Maxmann</p>
]]></description><link>https://www.c-plusplus.net/forum/post/991634</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/991634</guid><dc:creator><![CDATA[Maxmann]]></dc:creator><pubDate>Sat, 11 Feb 2006 15:32:45 GMT</pubDate></item></channel></rss>