<?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[stricmp]]></title><description><![CDATA[<p>Hi,</p>
<p>ich verstehe eine Sache nicht:</p>
<pre><code class="language-cpp">// &lt; 0 string1 less than string2 
//   0 string1 identical to string2 
// &gt; 0 string1 greater than string2 

char c[] = &quot;z&quot;;  
char d[] = &quot;aa&quot;; 

int i = _stricmp(c, d); // Ergebnis 1, d.h string1 greater than string2
</code></pre>
<p>Weshalb ist <strong>c</strong> größer als <strong>d</strong> ? Obwohls kürzer ist..</p>
<p>Muss stricmp nachbauen. Will aber zuerst verstehen wie stricmp vergleicht.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/120062/stricmp</link><generator>RSS for Node</generator><lastBuildDate>Sat, 22 Aug 2026 05:35:17 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/120062.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 08 Sep 2005 14:10:03 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to stricmp on Thu, 08 Sep 2005 14:10:03 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>ich verstehe eine Sache nicht:</p>
<pre><code class="language-cpp">// &lt; 0 string1 less than string2 
//   0 string1 identical to string2 
// &gt; 0 string1 greater than string2 

char c[] = &quot;z&quot;;  
char d[] = &quot;aa&quot;; 

int i = _stricmp(c, d); // Ergebnis 1, d.h string1 greater than string2
</code></pre>
<p>Weshalb ist <strong>c</strong> größer als <strong>d</strong> ? Obwohls kürzer ist..</p>
<p>Muss stricmp nachbauen. Will aber zuerst verstehen wie stricmp vergleicht.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/867894</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/867894</guid><dc:creator><![CDATA[Tanzfreak]]></dc:creator><pubDate>Thu, 08 Sep 2005 14:10:03 GMT</pubDate></item><item><title><![CDATA[Reply to stricmp on Thu, 08 Sep 2005 14:13:03 GMT]]></title><description><![CDATA[<p>The stricmp function <strong>lexicographically</strong> compares lowercase versions of string1 and string2 and returns a value indicating their relationship</p>
]]></description><link>https://www.c-plusplus.net/forum/post/867899</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/867899</guid><dc:creator><![CDATA[ssm]]></dc:creator><pubDate>Thu, 08 Sep 2005 14:13:03 GMT</pubDate></item></channel></rss>