<?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[&amp;quot;strcpy&amp;quot; rückwärts]]></title><description><![CDATA[<p>Hallo zusammen,</p>
<p>ich arbeite mit MS Visual C++ 6.0 / MFC.</p>
<p>Jetzt hab ich folgendes Problem:<br />
Zunächst muss ich ein BYTE umwandeln in char, dass mach ich mit:</p>
<pre><code class="language-cpp">BYTE byReadBuff6[MAX_BUFF];
char byReadBuff7[MAX_BUFF];

// umwandeln von const char* (LPCTSTR) in char*						
strcpy(byReadBuff7, (LPCTSTR) byReadBuff6);
</code></pre>
<p>Später muss ich das ganze wieder rückgängig machen.<br />
Also eine Art Umkehrfunktion.</p>
<p>Hat jemand eine Idee?<br />
Vielen Dank schon mal</p>
<p>MfG Dippi</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/137177/quot-strcpy-quot-rückwärts</link><generator>RSS for Node</generator><lastBuildDate>Sat, 29 Aug 2026 16:53:51 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/137177.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 15 Feb 2006 17:59:45 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to &amp;quot;strcpy&amp;quot; rückwärts on Wed, 15 Feb 2006 17:59:45 GMT]]></title><description><![CDATA[<p>Hallo zusammen,</p>
<p>ich arbeite mit MS Visual C++ 6.0 / MFC.</p>
<p>Jetzt hab ich folgendes Problem:<br />
Zunächst muss ich ein BYTE umwandeln in char, dass mach ich mit:</p>
<pre><code class="language-cpp">BYTE byReadBuff6[MAX_BUFF];
char byReadBuff7[MAX_BUFF];

// umwandeln von const char* (LPCTSTR) in char*						
strcpy(byReadBuff7, (LPCTSTR) byReadBuff6);
</code></pre>
<p>Später muss ich das ganze wieder rückgängig machen.<br />
Also eine Art Umkehrfunktion.</p>
<p>Hat jemand eine Idee?<br />
Vielen Dank schon mal</p>
<p>MfG Dippi</p>
]]></description><link>https://www.c-plusplus.net/forum/post/995156</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/995156</guid><dc:creator><![CDATA[Dippi_81]]></dc:creator><pubDate>Wed, 15 Feb 2006 17:59:45 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;quot;strcpy&amp;quot; rückwärts on Wed, 15 Feb 2006 18:15:16 GMT]]></title><description><![CDATA[<p>Bitte lern erstmal die Grundlagen, ich behaupte da sind noch Lücken! Byte ist auch nur ein typedef auf charsomit ist das alles schonmal Unsinn. Des weiteren kann man logischerweise implizit auf const casten, nur nicht anderst herum.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/995166</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/995166</guid><dc:creator><![CDATA[OMFG]]></dc:creator><pubDate>Wed, 15 Feb 2006 18:15:16 GMT</pubDate></item></channel></rss>