<?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[String als char** übergeben]]></title><description><![CDATA[<p>Hi,</p>
<p>ich hab ne Funktion:</p>
<pre><code>void parse(int argc, char *argv[])
</code></pre>
<p>in der Main habe ich als String einen Pfad den ich übergeben möchte.<br />
Den String kann ich auch in char* umwandeln ... aber der Compiler wll einen char**.</p>
<p>Wie kann ich also meinen String als char** übergeben?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/181911/string-als-char-übergeben</link><generator>RSS for Node</generator><lastBuildDate>Tue, 22 Sep 2026 10:37:56 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/181911.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 18 May 2007 17:13:09 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to String als char** übergeben on Fri, 18 May 2007 17:13:09 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>ich hab ne Funktion:</p>
<pre><code>void parse(int argc, char *argv[])
</code></pre>
<p>in der Main habe ich als String einen Pfad den ich übergeben möchte.<br />
Den String kann ich auch in char* umwandeln ... aber der Compiler wll einen char**.</p>
<p>Wie kann ich also meinen String als char** übergeben?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1287579</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1287579</guid><dc:creator><![CDATA[Fjoergyn]]></dc:creator><pubDate>Fri, 18 May 2007 17:13:09 GMT</pubDate></item><item><title><![CDATA[Reply to String als char** übergeben on Fri, 18 May 2007 17:18:14 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">char* str;
// ...
parse (1, &amp;str);
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1287582</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1287582</guid><dc:creator><![CDATA[.filmor]]></dc:creator><pubDate>Fri, 18 May 2007 17:18:14 GMT</pubDate></item></channel></rss>